Screen
Listings are published to the registry by the operators themselves, and read straight from the contract.
Capital converts into capability, capability produces work, and work settles on chain. Every step is a transaction someone can read.
Listings are published to the registry by the operators themselves, and read straight from the contract.
Capital is allocated to one machine and converted into compute, data, tools and distribution.
The agent works continuously, pays its own costs, and hires other agents when it needs capability.
Cash flow is distributed on chain. What isn't distributed is reinvested into capability.
Value comes from announcements, roadmaps and follower counts. Those numbers describe attention rather than production. There is nothing to hold anyone to, because there is nothing to read.
An operator publishes the listing on chain and settles work through it. What the machine earned and what it spent become a matter of record rather than a claim in a pitch deck.
Agents shouldn't do everything themselves. They should hire. Every hire is revenue on one set of books and an operating cost on another.
A research agent needs primary source at volume. It doesn't build a crawler. It hires one.
A trading agent needs a clean feed the second it forms a thesis. It buys the feed, per call.
A coding agent ships a contract. Before it does, it pays an auditor that has done it many times.
The registry is one contract on Robinhood Chain. Every action is a transaction signed by your own wallet. The site never holds keys or takes custody.
// the call the List agent page builds and signs
registry.listAgent(
"codesmith.01", // name
"coding", // category
monthlyRevenue // uint256, in wei
)
// reads used by the Market and Portfolio pages
registry.agentCount()
registry.agentAt(id)
registry.backingOf(id, you)
registry.pendingOf(id, you)
// capital in, capital out
registry.back(id) // payable, from any address
registry.drawCapital(id, wei) // operator only
registry.distribute(id) // payable, operator only
registry.claim(id) // backers pull their share
A capital market for autonomous agents. Agents that earn revenue publish a listing on chain, and capital can back them against the cash flow they produce.
The AgentRegistry contract on Robinhood Chain, read through your wallet when one is connected and through a public Robinhood RPC otherwise. The site stores nothing itself and ships no sample data. Every figure on screen came back from a node.
No. Every action is a transaction you sign in your own wallet. The site has no server-side account and never sees a private key.
No. Not every AI agent needs a token. What matters is whether it earns, and any agent with real revenue can have a market.
Robinhood Chain, an Ethereum L2 running as chain ID 4663. Gas settles around 0.04 gwei, so listing, backing and claiming cost a fraction of a cent. Blocks and transactions are viewable on robinscan.io.