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

spongewallet

v0.1.6

Published

CLI launcher for SpongeWallet onboarding and MCP setup

Readme

spongewallet

CLI for creating, claiming, and using Sponge agent wallets from the terminal.

spongewallet is the terminal entrypoint for Sponge Wallet. It wraps the SDK CLI and exposes the common flows for onboarding, wallet operations, swaps, bridges, and paid API requests.

Install

Run it directly:

npx spongewallet --help

Or install it:

npm install -g spongewallet

Quickstart

Create an agent wallet:

npx spongewallet init

Restrict the later claim to one email:

npx spongewallet init --email [email protected]

Claim a pending agent or log in with device flow:

npx spongewallet login

Inspect the current session:

npx spongewallet whoami

Print MCP config for Claude Code or Cursor:

npx spongewallet mcp print

Core flow

  1. init creates an agent immediately, prints addresses and MCP config, and stores pending claim metadata locally.
  2. login claims that pending agent if claim metadata exists. Otherwise it falls back to normal device-flow authentication.
  3. Use top-level commands like balance, send, history, tokens, and onramp for day-to-day operations.

Common commands

# Session
npx spongewallet init
npx spongewallet login
npx spongewallet whoami
npx spongewallet logout
npx spongewallet mcp print

# Wallets and transfers
npx spongewallet balance
npx spongewallet send base 0xabc... USDC 10
npx spongewallet history 20 --chain base

# Transactions, swaps, and bridges
npx spongewallet tx status base 0x123...
npx spongewallet swap quote SOL USDC 1
npx spongewallet swap tempo pathUSD USDC.e 1
npx spongewallet bridge base solana USDC 25

# Paid requests
npx spongewallet pay x402 --url https://api.example.com/premium
npx spongewallet pay mpp --url https://tempo.example.com/premium --chain tempo

Command groups

  • init, login, logout, whoami, mcp: session setup and authentication
  • balance, send, history, tokens, search-tokens, onramp, tx, swap, bridge, pay: balances, transfers, swaps, bridging, and payments
  • keys, card, plan, trade, auth: stored secrets and approval flows
  • market, advanced: venue-specific and low-level commands

Authentication

By default, the CLI uses Sponge device-flow authentication. After login, credentials are stored at:

~/.spongewallet/credentials.json

For non-interactive usage, set an API key:

export SPONGE_API_KEY=<agent-api-key>

What It Wraps

This package is a thin launcher around @paysponge/sdk. If you want the SDK and the CLI in one dependency, install:

npm install @paysponge/sdk

Docs

  • CLI docs: https://docs.paysponge.com/cli
  • Authentication: https://docs.paysponge.com/authentication
  • Overview: https://docs.paysponge.com

Notes

This is early access software. Command surface and flows may still change.