Robinhood Chain L2
Both models target Robinhood Chain, the L2 the $AGI token already trades on. The values below come from
config.js, which is the only place they are written down.
| Parameter | Value |
|---|---|
| Chain ID | 4663 (0x1237) |
| Native currency | ETH, 18 decimals |
| RPC | https://rpc.mainnet.chain.robinhood.com |
| Explorer | https://robinhoodchain.blockscout.com |
The button asks your wallet to add the network with wallet_addEthereumChain and the values
in the table: chain id 0x1237, the RPC, the explorer and ETH with 18 decimals. It sends no
transaction and signs nothing. If no wallet is detected, add the network by hand with the same values.
Model V2 depends on third-party singletons that must already exist on the chain: the Uniswap V4
PoolManager, the PositionManager and Permit2. The factory's constructor refuses a
PositionManager whose poolManager() does not match the one it was given, so a
mismatched pair fails once at construction rather than silently on every graduation. Model V1 needs a
Uniswap V3 factory, position manager and router, and every one of them must come from the
same deployment: mixing them does not revert, it quietly disables the anti-sniper checks
in the token, which look up the pool through the factory.