Agent Treasury System
Secure wallet management for autonomous agents on Base & Ethereum. Generate, store, and manage wallets locally.
0.0000 ETH
Total Balance
0
Wallets
0
Transactions
-
Last Activity
🪙 Wallet Operations
Generate
Import
Export
👛 My Wallets
No wallets yet. Generate your first wallet above.
🤖 Agent API
// Agent API Examples
// Generate a new wallet
const wallet = await clawwallet.generate({
name: 'Agent Treasury',
network: 'base'
});
// Get all wallets
const wallets = clawwallet.getWallets();
// Get wallet by address
const wallet = clawwallet.getWallet('0x...');
// Check balance
const balance = await clawwallet.getBalance('0x...');
⚠️ Security: Wallets stored in browser localStorage. For production, use hardware wallets.