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

nanosolana

v1.0.3

Published

TypeScript runtime and CLI for launching Solana trading agents, autonomous daemons, and one-shot operator workflows.

Readme

NanoSolana

TypeScript runtime and CLI for autonomous Solana agents, trading daemons, and one-shot operator setup.

npm version npm downloads TypeScript Node

Website · Hub · Docs · GitHub

nano-core is the package published to npm as nanosolana. It is the main runtime for the current TypeScript build.

What It Ships

| Area | Included | | --- | --- | | Bootstrap | go, bootstrap, init, birth, daemon, run, demo | | Runtime | wallet lifecycle, heartbeat, trading engine, gateway, NanoBot | | Memory | ClawVault with known, learned, and inferred tiers | | Strategy | RSI, EMA, ATR, signal scoring | | Security | AES-256-GCM local secret vault | | Discovery | NanoHub public skill discovery and one-shot manifests | | Registry | local registry flows and on-chain identity helpers | | Pump | integrated Pump SDK exports and swarm helpers |

Fastest Start

Demo mode

npx nanosolana demo

Runs the runtime in simulation mode. No API keys required.

One-shot operator bootstrap

npx nanosolana go

Alias:

npx nanosolana bootstrap

This is the main onboarding path for a new operator. It prompts for required keys, encrypts them into ~/.nanosolana/vault.enc, creates the local wallet, boots the pet and memory systems, starts the OODA engine, and brings up the gateway.

Long-running daemon

npx nanosolana daemon

Alias:

npx nanosolana run

This starts the persistent runtime directly if your local state is already initialized.

Install

Run without installing

npx nanosolana demo
npx nanosolana go

Global install

npm install -g nanosolana
nanosolana demo

From source

git clone https://github.com/x402agent/NanoSolana.git
cd NanoSolana/nano-core
npm install
npm run build
node dist/cli/entry.js demo

Minimal Live Configuration

The minimum practical live setup is:

OPENROUTER_API_KEY=...
HELIUS_API_KEY=...
HELIUS_RPC_URL=https://mainnet.helius-rpc.com/?api-key=...

Better live behavior usually also wants:

BIRDEYE_API_KEY=...
JUPITER_API_KEY=...
NANO_GATEWAY_SECRET=...

Use ./.env.example as the full template.

One-Shot Skill Plans

The runtime can resolve NanoHub manifests into a launch plan:

npx nanosolana oneshot token-tracker
npx nanosolana oneshot token-tracker --json

That flow:

  • resolves the public NanoHub manifest
  • checks required env vars
  • reports OAuth blockers
  • shows install packages and linked extensions
  • emits a machine-readable launch plan

Current CLI

init
birth
run
daemon
status
pet
send
bots
nodes
config
vault
docs
tasks
hub
pay
go
bootstrap
demo
scan
register
registry
nanobot
oneshot

SDK Usage

import {
  AIProvider,
  ClawVault,
  NanoWallet,
  StrategyEngine,
  TamaGOchi,
  TradingEngine,
  loadConfig,
} from "nanosolana";

const config = loadConfig();
const wallet = new NanoWallet("my-agent");
await wallet.birth();

const vault = new ClawVault();
vault.startAutonomous();

const pet = new TamaGOchi("MyAgent");
const engine = new TradingEngine(config, wallet);
await engine.start();

Operator Documents

Go Parity

The old Go daemon package graph is being adapted into the TypeScript runtime, not copied line-for-line. The parity map lives in GO_PARITY.md.