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

@agntos/agentwallet

v1.2.0

Published

Non-custodial, gas-sponsored smart wallets for AI agents on Base. Free gas, spending limits, passkey control.

Downloads

468

Readme

@agntos/agentwallet

Non-custodial, gas-sponsored smart wallets for AI agents on Base.

Your agent gets a real wallet with free gas, spending limits, and human control via FaceID — all enforced by smart contracts, not trust.

npx @agntos/agentwallet create --agent 0xYourAgentAddress

Why

AI agents need to spend money. But giving an agent an unlimited wallet is terrifying.

AgentWallet solves this:

  • Gas-sponsored — free gas on creation, your agent transacts immediately
  • Hard spending limits — $50/day, $25/tx by default, enforced on-chain
  • Human oversight — passkey (FaceID/YubiKey) controls limits and withdrawals
  • Non-custodial — agent's private key never leaves agent's machine

No custody. No trust. Architecturally impossible to steal funds.

Quick Start: From Zero to Transacting

1. Generate a keypair

npx @agntos/agentwallet keygen

This gives you an address (your agent's identity) and a private key (signs transactions). Save the private key securely.

Already have an EVM keypair? Skip this — use your existing public address.

2. Create a wallet

# Managed — human controls limits via FaceID/YubiKey
npx @agntos/agentwallet create --agent 0xYourAgentAddress

# Unmanaged — fully autonomous, no human needed
npx @agntos/agentwallet create --agent 0xYourAgentAddress --unmanaged

Managed wallets return a setup URL. Send it to your human — one-time setup.

Every wallet gets free gas (~140 transactions on Base).

3. Fund it

Send ETH and/or USDC to the wallet address on Base (chain ID 8453).

4. Transact

Your agent calls the smart contract directly:

import { Wallet, Contract, JsonRpcProvider, parseEther } from 'ethers'

const provider = new JsonRpcProvider('https://base-rpc.publicnode.com')
const agent = new Wallet('0xYOUR_PRIVATE_KEY', provider)

const wallet = new Contract('0xYOUR_WALLET', [
  'function execute(address to, uint256 value, bytes data) external',
  'function executeERC20(address token, address to, uint256 amount) external',
], agent)

// Send ETH
await wallet.execute('0xRecipient', parseEther('0.001'), '0x')

// Send USDC
await wallet.executeERC20(
  '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913', // USDC on Base
  '0xRecipient',
  5_000_000n // 5 USDC (6 decimals)
)

Transactions exceeding limits revert instantly. No queues, no waiting.

5. Check status

npx @agntos/agentwallet status 0xYourWallet

6. Need higher limits?

npx @agntos/agentwallet limits 0xWallet --daily 200 --pertx 100

Returns a URL → send to human → they approve with passkey → done.

All Commands

keygen                        # generate agent keypair
create --agent 0x...          # managed wallet
create --agent 0x... --unmanaged  # autonomous wallet
status 0xWALLET               # wallet info + balances
limits 0xWALLET --daily N --pertx N  # request limit increase
token-limit 0xWALLET --token 0x... --token-daily N --token-pertx N
rm-token 0xWALLET --token 0x...  # remove token limit
pause 0xWALLET                # emergency pause
unpause 0xWALLET              # resume
stats                         # total wallets deployed

All commands support --json for machine-readable output.

Contracts (Base Mainnet)

| Contract | Address | |----------|---------| | Factory | 0x77c2a63BB08b090b46eb612235604dEB8150A4A1 | | Implementation | 0xEF85c0F9D468632Ff97a36235FC73d70cc19BAbA |

Source: github.com/0xArtex/agentwallet-aos

License

MIT