Network specifications
Everything a terminal, aggregator, or wallet needs to know to work with Merry Men launches. The structural advantage that makes integration cheap: there is no bonding curve. Every launch is a canonical Uniswap V3 pool (TOKEN/WETH, 1% fee tier) tradeable from block one, so any consumer that already supports the chain can route swaps with zero custom contract work.
Chain facts
Section titled “Chain facts”| Mainnet | Testnet | |
|---|---|---|
| Chain id | 4663 | 46630 |
| Network | Robinhood Chain (Arbitrum Orbit L2) | Robinhood Chain testnet |
| Native gas | ETH | ETH |
| Quote asset | WETH | WETH |
| DEX | Uniswap V3, 1% fee tier (tick spacing 200) | Uniswap V3, 1% fee tier |
| Block time | ~100ms (10 blocks/s) | ~100ms |
| Explorer | https://robinhoodchain.blockscout.com |
https://explorer.testnet.chain.robinhood.com |
Launch token shape
Section titled “Launch token shape”Every launch token is identical in shape, so consumers can hardcode assumptions:
| Property | Value |
|---|---|
| Standard | ERC-20 |
| Decimals | 18 (always) |
| Supply | Fixed at launch, never changes |
| Owner / mint / pause / tax | None, the token is inert |
| Pool | One TOKEN/WETH Uniswap V3 pool per launch, 1% fee tier |
| Liquidity | Single-sided at launch, permanently locked |
Because the token is inert and always 18 decimals, consumers can rely on
decimals = 18 and the standard ERC-20 name / symbol.
Auto-indexing (already done)
Section titled “Auto-indexing (already done)”Terminals rarely integrate a launchpad directly; they integrate a chain, then read standard on-chain DEX events plus a few trusted aggregators. That layer already exists for Robinhood Chain:
- GeckoTerminal tracks the network and lists
uniswap-v3-robinhoodas a DEX. - DexScreener covers the chain too.
Because every Merry Men launch is a canonical Uniswap V3 pool on that same
factory, our pools are auto-indexed the moment they trade, no submission, no
integration. Verify a live launch at
geckoterminal.com/robinhood/pools
and dexscreener.com/robinhood.
The only remaining per-token work is cosmetic: logos and socials on aggregator listings, which come from a CoinGecko listing (feeds GeckoTerminal) or DexScreener’s “Enhanced Token Info,” not from arbitrary token lists.
What to read where
Section titled “What to read where”| You want… | Read |
|---|---|
| The addresses to call | Contract addresses |
| A live launches / prices / holders feed | Public API |
| Events to index yourself | Onchain events |
| On-chain reads for a token | Reading token state |
| How to derive price | Pricing calculations |

