Let your agent spend.
Stay in control.

On-chain spend limits for autonomous AI agents. Set a budget, let your agent trade โ€” anything over-limit queues for your approval.

npm install @agentwallet/sdk

The Problem

AI agents need wallets. But giving an agent your private key is insane.

๐Ÿ”‘

Shared private keys

Most agent frameworks require your private key. One bug, one prompt injection, and your entire wallet is drained.

๐ŸŽฐ

All or nothing access

No way to say "spend up to $100/day." It's either full access or no access. That's not how you'd give a credit card to an employee.

๐Ÿ›ก๏ธ

Per-transaction limits

Agent Wallet enforces max-per-tx and daily budget caps on-chain. The smart contract itself prevents overspending โ€” not your agent's code.

๐Ÿ“‹

Automatic approval queue

Anything over-limit gets queued for your approval. You get notified, review, approve or reject. The agent keeps working on everything within budget.

5 Lines to Production

Connect your agent to a spend-limited wallet in seconds.

// 1. Connect to the agent's wallet
const wallet = createWallet({ accountAddress, chain: 'base', walletClient });

// 2. Agent spends autonomously within limits
await agentTransferToken(wallet, { token: USDC, to: recipient, amount });

// 3. Over-limit? Auto-queued. Get notified.
onTransactionQueued(wallet, (e) => notify(`Approval needed: $${e.amount}`));

Built for Agent Builders

โ›ฝ

ERC-4337 Ready

Gasless transactions via paymasters. Your agent never needs ETH for gas.

๐Ÿญ

Factory Deploys

CREATE2 deterministic addresses. Know your agent's wallet before it exists.

๐Ÿ”—

ERC-6551 Native

Wallets bound to NFTs. Transfer the NFT, transfer wallet ownership.

๐Ÿ“Š

Per-Token Policies

Different limits for USDC, ETH, or any ERC-20. Fine-grained control.

๐Ÿ””

Event Listeners

Built-in hooks for queued transactions. Pipe to Telegram, Discord, or webhooks.

๐Ÿงช

Thoroughly Tested

33 tests (unit + exploit verification). 2 rounds of internal AI-assisted security review. Auditable Solidity with no off-chain dependencies.

How It Compares

Agent Wallet vs the alternatives.

Feature Agent Wallet Raw EOA Multisig Custodial API
Per-tx spend limits โœ“ On-chain โœ— โœ— Off-chain only
Daily budget caps โœ“ On-chain โœ— โœ— Off-chain only
Auto approval queue โœ“ โœ— Manual Varies
Gasless (ERC-4337) โœ“ โœ— โœ— โœ“
Self-custodial โœ“ โœ“ โœ“ โœ—
No private key sharing โœ“ โœ— โœ“ โœ“
NFT-bound identity โœ“ โœ— โœ— โœ—