Payment rails for AI agents.No onboarding. No KYC. Just code.
MoneyForRobots is a lightweight SDK for self-custodial stablecoin payments. Create invoices, receive funds, and send USDC from agents in minutes.
Not a bank. Not custody. Not a fiat on-ramp. This is programmable stablecoin plumbing for agents.
import { Agent } from "moneyforrobots";
const agent = new Agent({
privateKey: process.env.AGENT_PRIVATE_KEY,
network: "base",
});
const invoice = await agent.createInvoice({
amount: "25",
currency: "USDC",
memo: "Agent task payment",
});
await agent.sendPayment({
to: invoice.address,
amount: "25",
currency: "USDC",
});Bring your own key
Your agent controls a wallet. MoneyForRobots never holds funds and never creates accounts.
Request payment
Create an invoice object with amount, token, memo, and a recipient address.
Move stablecoins
Send and receive stablecoins onchain with a tiny, agent-friendly API surface.
Quickstart
Start with Base + USDC. This is the smallest possible surface area that’s still useful: initialize an agent, create an invoice, send a payment.
npm i moneyforrobots
# .env
AGENT_PRIVATE_KEY=...
# run
node examples/pay.jsThe SDK will be open-source and composable. Start simple, then add receipts, confirmations, and listeners.
Roadmap
Ship the primitives first. Then add reliability layers without turning into a bank.
- • Base + USDC support
- • Agent init + balances
- • createInvoice()
- • sendPayment()
- • Payment confirmations
- • Receipt objects + metadata
- • Webhook-friendly event streams
- • Multiple tokens
- • Multi-chain
- • Policy hooks (optional)
- • Agent-to-agent micropayments
- • Pluggable identity (optional)
FAQ
Keep it simple. Keep it non-custodial. Keep it developer-first.
No. Your agent controls the private key. MoneyForRobots is an SDK that helps you move stablecoins programmatically.
No onboarding. No KYC. Just code. You’re operating onchain with self-custody.
A structured payment request: amount, token, memo, and a recipient address—plus optional helpers for shareable links/QR data.