Connect to Robinhood Chain
Add the network to your wallet using the parameters below, then confirm the chain ID before signing anything.
Robinhood Chain
Chain ID4663
RPC URLhttps://robinhood-mainnet.g.alchemy.com/v2/alch_YWRRO_zqqJepcbb0cpWOA
CurrencyETH
Explorerhttps://robinhoodchain.blockscout.com
Add programmatically
ts
await window.ethereum.request({
method: "wallet_addEthereumChain",
params: [
{
chainId: "0x1237", // 4663
chainName: "Robinhood Chain",
nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
rpcUrls: ["https://rpc.mainnet.chain.robinhood.com"],
blockExplorerUrls: ["https://robinhoodchain.blockscout.com"],
},
],
});Testnet
Robinhood Chain Testnet
Chain ID46630
RPC URLhttps://rpc.testnet.chain.robinhood.com
CurrencyETH
Explorerhttps://explorer.testnet.chain.robinhood.com
Security
Only add RPC endpoints you trust. A malicious RPC can display misleading state, even though it cannot sign on your behalf.