Docs · live records
Contracts & addresses
Every record below is live on Robinhood Chain mainnet (chain id 4663, explorer robinhoodchain.blockscout.com). Don't trust these docs — verify each row against the chain; every one links straight to it.
| Contract | Address |
|---|---|
| ArcaVault — "Arca Frontier" (ARCI) | 0x04f4F5…e9F628 ↗ |
| ArcaUniV4Router — Uniswap v4 swap adapter | 0x107d39…39997f ↗ |
| ArcaZapper — one-click USDG in/out (periphery, no vault powers) | 0x1942E2…567938 ↗ |
| ArcaZapRouter — exact-out/in v4 adapter for the zapper | 0xc7445A…b52cef ↗ |
Five names, picked by on-chain liquidity checks (two-way Uniswap v4 depth against USDG within ~1% of oracle) so the agent can rebalance every leg permissionlessly.
| Stock | Token | Chainlink feed |
|---|---|---|
| NVIDIA (NVDA) | 0xd0601C…0D9EEC ↗ | 0x379EC4…8E9F15 ↗ |
| Microsoft (MSFT) | 0xe93237…9c2e74 ↗ | 0x45C3C8…C1Af2E ↗ |
| Tesla (TSLA) | 0x322F09…003b2d ↗ | 0x4A1166…547C38 ↗ |
| Alphabet (GOOGL) | 0x2e0847…AD4FE3 ↗ | 0xF6f373…AE638b ↗ |
| SpaceX (SPCX) | 0x4a0E65…e35eEa ↗ | 0xB26581…D8Bffb ↗ |
Ahead of mainnet, the same contract suite ran the full loop on RHC testnet (chain 46630) with real testnet stock tokens. The receipts stay public:
| Operation | What happened | Transaction |
|---|---|---|
| Mint | deposited the basket → minted 1 index token, fully backed | 0x4f8a9a…2f90df ↗ |
| Rebalance | agent rotated weights through its policy gate; fully backed before and after | 0xa02e4d…e4debc ↗ |
| Redeem | burned 0.5 index token → all stocks returned in-kind, one tx | 0xb5efff…0ba98f ↗ |
With Foundry's cast against any RHC mainnet RPC:
# is one token still fully backed by the basket? cast call 0x04f4F5b8572d0b925557BE9F42C92B9Edce9F628 "isFullyBacked()(bool)" --rpc-url https://rpc.mainnet.chain.robinhood.com # portfolio value (USD, 18 decimals) and supply cast call 0x04f4F5b8572d0b925557BE9F42C92B9Edce9F628 "nav()(uint256)" --rpc-url https://rpc.mainnet.chain.robinhood.com cast call 0x04f4F5b8572d0b925557BE9F42C92B9Edce9F628 "totalSupply()(uint256)" --rpc-url https://rpc.mainnet.chain.robinhood.com # what the vault actually holds (e.g. NVDA) cast call 0xd0601CE157Db5bdC3162BbaC2a2C8aF5320D9EEC \ "balanceOf(address)(uint256)" 0x04f4F5b8572d0b925557BE9F42C92B9Edce9F628 \ --rpc-url https://rpc.mainnet.chain.robinhood.com
Source
Contract source is verified on the explorer, and the full repo — contracts, tests, deploy scripts — is public on GitHub.
Arca