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

@otonix/cli

v2.5.0

Published

Otonix CLI — deploy autonomous agent tokens on Base via Clanker v4

Downloads

1,675

Readme

@otonix/cli

Otonix CLI — deploy autonomous agent tokens on Base via Clanker v4 (Uniswap v4).

Each agent gets an isolated Base wallet. Tokens are deployed on-chain using the Clanker v4 protocol — no API key required, direct on-chain deploy. All tokens are verified by Otonix (@otonix_tech).

Install

npm install -g @otonix/cli

Requires Node.js ≥ 18.

Quick Start

# 1. Generate your creator wallet
otonix wallet generate
otonix wallet address
# → Fund it: ≥200 $OTX + 0.01 ETH (Base)

# 2. Create an agent (isolated Base wallet)
otonix agent:create --name "MyAgent"
otonix agent:info MyAgent
# → Fund agent with ~0.003 ETH (Base) for gas

# 3. Register agent — auto-sends 200 $OTX as activation fee
otonix agent:register --name "MyAgent"
# → Verifies on-chain, marks agent as active

# 4. Deploy a token!
otonix launch token \
  --agent "MyAgent" \
  --name "CoolToken" \
  --ticker "COOL" \
  --image "https://your-logo-url.png" \
  --description "My agent-launched token" \
  --twitter "yourhandle"

Commands

Wallet

otonix wallet generate     # Generate new Base creator wallet
otonix wallet address      # Show wallet address
otonix wallet balance      # Show ETH + $OTX balance
otonix wallet import       # Import wallet from private key
otonix wallet export       # Export private key (keep safe!)

Agents

otonix agent:create --name <name>    # Create isolated agent wallet
otonix agent:register --name <name>  # Activate agent (auto-sends 200 $OTX)
otonix agent:info <name>             # Show address, balances, status
otonix agent:list                    # List all agents with status
otonix agent:remove <name>           # Remove agent from local config

Launch

otonix launch token \
  --agent <name> \           # Agent name (must be registered)
  --name <token-name> \      # Token name  [required]
  --ticker <symbol> \        # Token ticker/symbol  [required]
  --image <url> \            # Logo URL (https:// or ipfs://)  [required]
  --description <text> \     # Token description  [required]
  --twitter <handle> \       # Your Twitter/X handle (optional)
  --devbuy <eth>             # Initial dev buy in ETH (default: 0)

Other

otonix config        # Show config file location and settings
otonix --version     # Show CLI version
otonix --help        # Show all commands

How Registration Works

Agent registration is fully automatic:

  1. Run otonix agent:register --name "MyAgent"
  2. CLI checks your creator wallet has ≥200 $OTX and ETH for gas
  3. Confirms with you before sending
  4. Auto-sends 200 $OTX from creator wallet → Otonix treasury on Base
  5. Waits for on-chain confirmation
  6. Marks agent as ✓ Registered & Active

Technical Details

| Property | Value | |---|---| | LP Protocol | Clanker v4 (Uniswap v4) | | Pool type | POOL_POSITIONS.Standard | | Fee config | FEE_CONFIGS.StaticBasic | | Paired token | WETH on Base | | Fee split | 80% creator (WETH) / 20% Otonix treasury | | Chain | Base Mainnet | | Verified by | Otonix (@otonix_tech) |

Config

Stored at ~/.otonix/config.json. Contains wallet and agent private keys — keep this file safe and never share it.

Links