.005 · Manual
The console, in seven steps.
A working reference. From wallet connection to agent hand-off. What to do, why it matters, what the chain verifies.
Sequence
Authorise the console
Connect a Robinhood Chain wallet. The wallet you use here becomes the authority of the reserve. Only it can deploy, configure, withdraw, or rotate quorum.
Deploy the reserve
From the overview, deploy the reserve. This creates a reserve contract on Robinhood Chain that holds capital and account state. Done in a single transaction.
Open lanes
Each agent gets its own lane. Name, agent identifier, USDC budget. Open as many as you need; they are isolated from one another.
Set governance
Per-lane: max-per-tx, daily cap, hours window. All stored as on-chain account data, all enforced atomically.
Curate the roster
Add the addresses lanes are allowed to pay. The contract rejects every other destination. The agent literally cannot send funds elsewhere.
Fund the reserve
Move USDC into the reserve. Lanes draw from this pool against their budgets, and replenish themselves as configured.
Hand it to the agent
Give the agent runtime its contract address, lane address, and RPC. The agent calls execute_payment. Every rule is verified by the chain before settlement.
Glossary
Reserve
A reserve contract on Robinhood Chain that holds USDC and enforces every rule. Controlled by the wallet that deployed it. No private key exists for the address itself.
Lane
A partition inside the reserve assigned to one agent. Has its own balance, ledger, governance, and roster. Lanes cannot reach each other.
Governance
Account data attached to a lane: max-per-tx, daily cap, hours, lifetime ceiling. Verified atomically before any settlement.
Roster
Per-lane allowlist of recipients. Anything off-list is rejected by the contract. Even if the agent is fully compromised.
Why on-chain
Rules enforced by a server require trust in that server. On-chain rules survive any operator failure. They run on Robinhood Chain, not your infrastructure.
Fees
Custos charges 0%. The only cost is Robinhood Chain transaction fees. Fractions of a cent. The protocol takes nothing from your settlement.
Agent · sample integration
How an agent calls the reserve to settle a payment. This runs on the agent runtime. Not in this console.
import { createWalletClient, http } from "viem";
const CONTRACT = "0x…your-contract-address";
const LANE = "0x…agent-lane-address";
const TO = "0x…approved-counterparty";
const hash = await wallet.writeContract({
address: CONTRACT,
functionName: "execute_payment",
args: [LANE, TO, 5_000_000n], // 5 USDC, 6 decimals
});
await client.waitForTransactionReceipt({ hash });
// pass → settles atomically.
// fail → reverts atomically. Nothing moves.