Skip to main content

NoxaFun Launchpad Integration on Robinhood Chain

Learn how to index and integrate the NoxaFun launchpad on Robinhood Chain, including contract discovery, ABI events, token pricing, liquidity, bonding state, graduation, and metadata.

Network and contracts

Market discovery and ABI

Resolve the launch, DEX config and launch config, then verify the exact V3 pool and preserve its token order.

Relevant ABI

Launchpad architecture and AMM model

NoxaFun is a token launchpad built on top of configurable Uniswap v3-style DEX deployments. The selected V3 factory provides trading and concentrated liquidity, while Noxa adds launch and DEX configuration, restrictions, token attribution, progress, and metadata. Classification: Uniswap v3-like with configurable DEX and launch records. The launch factory selects a DEX configuration, pool fee, tick spacing, position manager, and pair token; the resolved pool then follows V3 pricing and liquidity semantics. Shared with V3: token0/token1, slot0, sqrtPriceX96, ticks, signed swaps, and concentrated positions. Protocol-specific: DEX/launch configuration IDs, anti-whale restriction fields, launch registration, quote-progress target, and launch-transaction metadata.

Price calculation

Use V3 sqrtPriceX96 in exact pool order, adjusted for decimals. Use isToken0 only for launched-token orientation.

Liquidity tracking

Track signed V3 swaps and Mint/Burn/Collect/Flash. Pool balances represent inventory; concentrated liquidity needs tick conversion.

Launchpad state, bonding, and migration

The launch target is 4.2 quote ETH for the current Robinhood deployment. progress = clamp(currentQuote / 4.2e18 × 100). Apply signed quote deltas so sells reduce progress; completion requires the target or explicit terminal state.

Metadata

Decode metadata/social parameters from launchToken input and enrich from the protocol token endpoint. Merge with ERC-20 fields; factory registration remains the identity source. For broader methodology, see Bonding Curves Mathematics and Pricing Engine Deep Dive.