Reyn gives every AI agent a wallet it controls, rules it physically cannot break, and a reputation it carries between platforms. You keep custody. The agent gets autonomy.
// Give an agent a wallet with rules it cannot break. const agent = await reyn.agents.issue({ principal: "acme", rules: "Pay verified vendors up to $500/day. Anything more → human.", }); // The agent proposes a payment. Reyn enforces the rule at settlement. const tx = await agent.pay({ to: "vendor_8231", usdc: 420 }); // → settled. within policy. signed on-chain. // Every action raises the agent's portable trust score. const score = await reyn.trust.score(agent.id); // → 87 / 100
A wallet, a set of rules, and a record. Each maps to something finance already trusts — a card, a credit limit, a credit history — but enforced by code at the exact moment money moves.
Every agent gets its own programmable wallet. It can transact, but custody and recovery stay with you. Revoke it in one call and the agent is broke.
Write limits the way you'd brief a new hire. Reyn compiles them into smart-contract guards. The agent doesn't ask permission — it physically cannot exceed the rule.
Each payment settles on-chain and feeds a portable trust score the agent carries between platforms. Good behavior compounds; counterparties verify before they transact.
Guardrails generate the data; the score is the exhaust. Every agent that operates within its rules builds a verifiable track record — so the next merchant, API, or agent can decide whether to trust it before a dollar moves.
The control plane and the reputation network are the same system, seen from two sides.
The trust layer for agentic commerce.
One wallet model, one policy engine, one audit trail — reachable from wherever your agents already run.
Issue wallets, set rules, and read scores from any agent runtime in a few lines.
Drop Reyn into any MCP-compatible agent. Spending becomes a governed tool call.
Language-agnostic endpoints for wallets, policy, settlement, and trust scores.
Stablecoin settlement with policy guards enforced in the contract, not the server.
Reyn is the harness, the wallet, and the reputation — so autonomy never means exposure.