Getting started
Add the Network
StonkBrokerChain works with every EVM wallet — MetaMask, Rabby, Coinbase Wallet, Trust, or any WalletConnect-compatible mobile wallet.
Add StonkBrokerChain
| Network name | StonkBrokerChain |
|---|---|
| RPC URL | https://rpc.stonkbrokerchain.xyz |
| Chain ID | TBA |
| Currency symbol | STONKBROKER |
| Block explorer | https://Pending Update |
Pending values
The chain ID is published at mainnet launch. Until then, treat the table above as the shape of the config rather than final values.
Add Robinhood Chain (for bridging)
You bridge in from Robinhood Chain, so add that network too:
| Network name | Robinhood Chain |
|---|---|
| RPC URL | https://rpc.mainnet.chain.robinhood.com |
| Chain ID | 4663 |
| Currency symbol | ETH |
| Block explorer | https://robinhoodchain.blockscout.com |
Add it from a dApp
await window.ethereum.request({
method: "wallet_addEthereumChain",
params: [{
chainId: "0x...", // StonkBrokerChain chain ID, hex encoded
chainName: "StonkBrokerChain",
nativeCurrency: { name: "STONKBROKER", symbol: "STONKBROKER", decimals: 18 },
rpcUrls: ["https://rpc.stonkbrokerchain.xyz"],
blockExplorerUrls: ["https://Pending Update"],
}],
});Verify it works
Switch your wallet to StonkBrokerChain. Your balance is displayed in STONKBROKER — that is the native coin here. A zero balance simply means you have not bridged yet; see the Deposit guide.