Reference

Networks & addresses

Robinhood Chain is an Ethereum L2 on the Arbitrum stack; gas is paid in ETH. The launchpad runs on testnet today.

Chains

Testnet (live)Mainnet
Chain ID46630 (0xb626)4663 (0x1237)
RPCrpc.testnet.chain.robinhood.comrpc.mainnet.chain.robinhood.com
Explorerexplorer.testnet.chain.robinhood.comrobinhoodchain.blockscout.com
Native tokenETHETH

Launchpad deployment (testnet)

ContractAddress
Launchpad0x4874AB389827d4BC9be9750163c59398D4C91Cd9
Stand-in router *0xac2cD2237e5b986F00e13c13eeEebeF778e744bE
Note.* Uniswap isn't deployed on Robinhood testnet, so a mock router stands in there. Graduation was still verified against the real mainnet Uniswap via a fork.

Uniswap V2 (mainnet)

Where graduated tokens land when the launchpad goes to mainnet:

ContractAddress
Router0x89e5db8b5aa49aa85ac63f691524311aeb649eba
Factory0x8bceaa40b9acdfaedf85adf4ff01f5ad6517937f
WETH0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73

Add the testnet to your wallet

javascript
await window.ethereum.request({
  method: "wallet_addEthereumChain",
  params: [{
    chainId: "0xb626", // 46630
    chainName: "Robinhood Chain Testnet",
    nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
    rpcUrls: ["https://rpc.testnet.chain.robinhood.com"],
    blockExplorerUrls: ["https://explorer.testnet.chain.robinhood.com"],
  }],
});
Heads up.Mainnet launchpad addresses aren't published yet — the contract is deployed after an audit. Until then, only use testnet ETH.