Testnet only. Not audited. These pages describe intended behaviour, not shipped behaviour.

Maynexdocs

Network

Robinhood Chain testnet — chain ID, RPC configuration, and what is deployed.

Testnet only

There is no mainnet deployment and no plan for one until the open problems on the security page are resolved. Do not point this at a chain where the assets are real.

Chain

NetworkRobinhood Chain testnet
Chain ID46630
CurrencyTestnet ETH

Configuration

The RPC endpoint is read from the environment. Copy the example file and fill it in:

cp .env.example .env
.env
ROBINHOOD_TESTNET_RPC_URL=https://your-endpoint-here
DEPLOYER_ADDRESS=0x0000000000000000000000000000000000000000

.env is listed in .gitignore. Keep it that way.

No keys in the environment

.env holds an RPC URL and a public address. It does not hold a private key. Deployment reads from an encrypted keystore instead — see Quickstart.

The endpoint is then available to Foundry as a named RPC:

foundry.toml
[rpc_endpoints]
robinhood_testnet = "${ROBINHOOD_TESTNET_RPC_URL}"
cast chain-id --rpc-url robinhood_testnet

That should print 46630. If it prints anything else, the endpoint is pointed at a different chain and nothing below will behave as documented.

Deployed addresses

None. There is no deployment yet, on any network.