npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@blueprint.xyz/plugin-solentic

v1.0.1

Published

Native Solana staking plugin for ElizaOS — stake, unstake, withdraw SOL with Blueprint validator. ~6% APY, zero custody.

Downloads

11

Readme

@elizaos/plugin-solentic

Native Solana staking plugin for ElizaOS. Lets any ElizaOS agent stake, unstake, and withdraw SOL with the Blueprint validator on Solana mainnet.

  • ~6% APY through native Solana staking + Jito MEV rewards
  • Zero custody: private keys are used only to sign transactions, never stored on the server
  • On-chain verification via solentic.theblueprint.xyz memo

Installation

npm install @elizaos/plugin-solentic

Configuration

Add the plugin to your character config:

{
  "plugins": ["@elizaos/plugin-solentic"],
  "settings": {
    "secrets": {
      "SOLANA_PRIVATE_KEY": "your-base58-private-key",
      "SOLANA_PUBLIC_KEY": "your-wallet-address"
    }
  }
}

Environment Variables

| Variable | Required | Description | |---|---|---| | SOLANA_PRIVATE_KEY | For staking | Base58-encoded Solana private key. Needed for stake/unstake/withdraw. | | SOLANA_PUBLIC_KEY | Recommended | Wallet address. Used for portfolio lookups and balance checks. | | SOLENTIC_API_URL | No | API base URL. Defaults to https://solentic.theblueprint.xyz. |

Actions

STAKE_SOL

Stake SOL with the Blueprint validator. Extracts the amount from natural language.

Triggers: "stake 10 SOL", "put 5 SOL into staking", "delegate SOL to Blueprint"

UNSTAKE_SOL

Deactivate a stake account. If only one active stake account exists, it is selected automatically. Otherwise the agent asks the user to choose.

Triggers: "unstake my SOL", "deactivate my stake", "stop staking"

WITHDRAW_SOL

Withdraw SOL from a deactivated stake account back to the wallet. Checks cooldown readiness before attempting.

Triggers: "withdraw my staked SOL", "claim my SOL back", "get my SOL out"

CHECK_STAKE_STATUS

View the staking portfolio: all stake accounts, balances, states, and estimated rewards.

Triggers: "check my staking status", "how much SOL do I have staked?", "show my stakes"

GET_VALIDATOR_INFO

Get Blueprint validator details: APY, commission, performance, total stake, version.

Triggers: "what's the validator APY?", "tell me about the Blueprint validator", "what yield can I get?"

Provider

solenticStakingInfo

Automatically provides staking portfolio context to the agent so it can proactively reason about idle SOL, staking opportunities, and withdrawal readiness.

Security

  • Private keys are sent to the Solentic API for one-shot transaction signing and are never stored or logged on the server
  • All transactions include an on-chain memo (solentic.theblueprint.xyz) for verification
  • The API source code is auditable via the verify_code_integrity endpoint
  • HTTPS only for all API communication

API

This plugin wraps the Solentic REST API at https://solentic.theblueprint.xyz. Full documentation: solentic.theblueprint.xyz/docs

License

MIT