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

nodpay

v0.2.43

Published

NodPay CLI — propose on-chain payments from agent-human shared wallets

Readme

NodPay — Trusted Agent Wallet

"Two minds, one wallet."

A multisig crypto wallet shared between humans and AI agents. Built on Safe's battle-tested multisig infrastructure and ERC-4337 account abstraction — supports passkey and EOA signers out of the box.

For the full agent integration guide, see nodpay.ai/skill.md.

Package Structure

This npm package (nodpay) is the agent-facing CLI. It is also published as a skill on ClawHub.

| Distribution | Contains | Audience | |--------------|----------|----------| | npm (npx nodpay) | CLI scripts + SKILL.md | Any AI agent | | ClawHub (clawhub install nodpay) | SKILL.md only | OpenClaw agents | | nodpay.ai/skill.md | SKILL.md via CDN proxy | All agent frameworks |

The CLI provides five commands:

nodpay keygen     # Generate agent keypair (~/.nodpay/.env, chmod 600)
nodpay nonce      # Query next nonce (on-chain EntryPoint + pending proposals)
nodpay propose    # Propose a transaction for human approval (--nonce required)
nodpay txs        # List and verify transactions for a wallet
nodpay gasprice   # Get current gas price + estimated cost per chain

Quick Start

# 1. Generate key (public address only in stdout; key never exposed)
npx nodpay keygen

# 2. Get next nonce (on-chain + pending)
npx nodpay nonce --safe 0xWALLET --chain base

# 3. Propose a payment
npx nodpay propose \
  --chain base \
  --safe 0xWALLET \
  --to 0xRECIPIENT \
  --value-eth 0.01 \
  --nonce 0 \
  --human-signer-passkey-x 0x... \
  --human-signer-passkey-y 0x... \
  --recovery-signer 0x...

# 4. Check transactions (with verification)
npx nodpay txs --safe 0xWALLET

# 5. Estimate gas cost for a sweep
npx nodpay gasprice --chain base

Security

All config lives in ~/.nodpay/ — zero process.env references in code.

  • Hardened Key Isolation: private key written to ~/.nodpay/.env (chmod 600), read via file I/O at runtime. Not passed through CLI args, env vars, or stdout.
  • Zero Trust: txs independently verifies every server response (decode calldata → recompute hash → recover signer → check owner set).
  • Threshold Security: 2-of-3 multisig — agent cannot move funds unilaterally.

See SKILL.md for the complete Trust Model.

Related

| Package | Description | |---------|-------------| | @nodpay/core | Protocol primitives — hash, decode, verify (identity-agnostic) | | nodpay.ai | Web app — wallet creation & transaction approval |

Supported Chains

Ethereum · Base · Arbitrum · Optimism · Polygon · Sepolia · Base Sepolia

License

MIT