IntroductionGetting startedHow launches workFeesIndexer & bot guideContracts & eventsAPI referenceKOL partner program
Integrations
Contracts & events
Deployed addresses, key events, and ABIs for Robinhood Chain.
Deployed addresses (HOOD)
| Contract | Address |
|---|---|
| ZoracleLaunchFactory | 0x76c1139ca3E2A7633081532cBf8cf5E80bAeddfe |
| ZoracleLocker | 0x2EF1b35fA9E9Ac3130204dda4D3bEFb73019bC57 |
| ZoracleZap | 0xC801b5ca05A82a4F38CfB3F78EE6df13b2fC6829 |
| Uniswap V3 Factory | 0x1f7d7550B1b028f7571E69A784071F0205FD2EfA |
| WETH | 0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73 |
| SwapRouter02 | 0xCaf681a66D020601342297493863E78C959E5cb2 |
| Position Manager | 0x73991a25C818Bf1f1128dEAaB1492D45638DE0D3 |
Indexing
| Field | Value |
|---|---|
| Factory deploy block | 11_482_559 |
| RPC | https://rpc.mainnet.chain.robinhood.com |
| Pool fee tier | 10000 (1%) |
Key events
// ZoracleLaunchFactory
event Launched(
address indexed token,
address indexed deployer,
address pool,
uint256 positionId,
uint256 launchId
);
// ZoracleLocker
event Registered(
uint256 indexed positionId,
address indexed token,
address creator,
address referrer
);
event FeesCollected(
uint256 indexed positionId,
uint256 wethTotal,
uint256 toCreator,
uint256 toPlatform
);View functions
factory.isLaunchedToken(address token) → bool
factory.launchCount() → uint256
factory.tokenToLaunchId(address token) → uint256
IZoracleToken(token).pool() → address
IZoracleToken(token).creator() → address
IZoracleToken(token).factory() → addressFull contract source and tests live in the repo under contracts/. ABIs used by the app are in lib/launchpad/abis.ts.
