Reference
Contracts & chain
Every Outlaw.fun contract is deployed and verified on Robinhood Chain. Here are the addresses, the chain parameters, the events the app indexes, and how to check all of it yourself.
Contract addresses
All contracts are verified on Blockscout — click any address to read the source, the ABI, and live state.
| Contract | Address | Role |
|---|---|---|
| LaunchpadFactory | 0x864014…1efF06 | Deploys tokens and opens their bonding curves |
| CurveMarket | 0xB16978…778Fc7 | Prices buys/sells, holds curve state, runs graduation |
| FeeSplitter | 0xd66D18…1056Ed | Immutable 80/20 treasury / trader-rewards split |
| Uniswap V2 Factory | 0x8bcEaA…17937f | Creates the token/WETH pair at graduation |
| WETH | 0x0Bd7D3…AcAD73 | Wrapped ETH paired against graduated tokens |
Individual meme tokens are deployed on demand by the factory, so each has its own address — find it on the token's page or via the TokenCreated event.
Chain parameters
| Network | Robinhood Chain |
| Chain ID | 4663 |
| Type | Arbitrum Orbit EVM rollup (settles to Ethereum) |
| Gas token | ETH |
| RPC URL | https://rpc.mainnet.chain.robinhood.com |
| Explorer | https://robinhoodchain.blockscout.com |
Key events
The interface and indexer are built entirely on public on-chain events. The three you'll care about most:
| Event | Emitted when |
|---|---|
| TokenCreated | A new token is launched by the LaunchpadFactory. |
| Trade | Any buy or sell executes on a token's bonding curve. |
| Graduated | A token fills its curve and seeds its Uniswap V2 pool. |
Verify everything yourself
Nothing here needs to be taken on trust. To audit the protocol end-to-end:
- Open any contract above on Blockscout and confirm the green verified badge — the deployed bytecode matches published source.
- Read the Read Contract tab to see live curve reserves, the fee split, and per-token state, then reproduce a quote with the published math.
- Check the
FeeSplitterto confirm the 80/20 split is fixed, and theCurveMarketfor the graduation-fee cap. - After a token graduates, look up its Uniswap V2 pair and confirm the LP balance sits at a dead address — proof the liquidity is burned.
Point your own tools at it
Because it's a standard EVM chain, you can query all of this with viem, ethers, cast, or a plain
eth_call against the RPC. The addresses above are the entire surface area.