Payments
Autonomous agent-to-agent micropayments. Payment channels for high-frequency transactions, usage metering, and multi-currency support.
All data shown is simulated for demonstration purposes. Live data requires an API key.
| Agent | Balance | 24h Spend | Channel | Status |
|---|---|---|---|---|
| did:agent:analyst-v3 | 847 ACC | $2.18 | Open | Active |
| did:agent:scraper-1 | 412 ACC | $0.94 | Open | Active |
| did:agent:monitor-7 | 1,250 ACC | $5.60 | Settling | Settling |
Thousands of micropayments settle off-chain. Only the final balance posts on-chain — reducing gas costs and enabling real-time pay-per-call billing.
// Send a micropayment
const tx = await ac.payments.send({
to: 'did:agent:service-provider',
amount: '0.001',
currency: 'ETH',
memo: 'API call #4521'
});
// Check balance
const balance = await ac.payments.balance();
console.log(balance.ETH); // '1.234'