REFERENCES

Which numbers are real

A launchpad that quotes coins in other coins has one obvious failure mode: a price nobody can check. This page says exactly where every figure on the site comes from.

01 Where prices come from

A coin's price in its parent is read from its Uniswap v4 pool, the same number every other interface sees. Nothing is set by the pad and nothing is smoothed.

Two outside numbers turn that into dollars: ETH/USD, from CoinGecko, and, for coins paired with an outside token, that token's dollar price from the market board. Both only ever change a label. If either feed died the pools would keep trading and only the dollar column would go dark. The one place a dollar figure touches the chain is the opening price of a launch: the pad turns the $4,000 target into a price in the parent at the moment you launch.

02 How a dollar figure is built

usd_price = p₁ × p₂ × … × pₙ × eth_usd for the n hops between the coin and ETH, where an outside parent's hop is its own dollar price over ETH's
market_cap = usd_price × 1,000,000,000

FigureSourceStatus in this build
Pair priceThe pool's current sqrt priceRead from Uniswap's PoolManager through the launcher
Price seriesThe pool's Swap logsEvery swap's resulting price, from the launch on
In the poolThe locked positionComputed from its liquidity and the current price
Outside parent priceMarket board, then DexScreenerDisplay only
USD price and market capPath product × ETH/USDComputed live, ETH/USD cached two minutes
Coins, creators, holdersThe launcher and Transfer logsRead from the chain; the pool manager, the launcher and the burn address are not counted as holders

03 What the fee schedule actually is

RecipientBpsNotes
Protocol300.003% of every swap, charged by the pool in the token paid in, collected by the owner
Liquidity0The locked position earns the fee; its principal never moves, and the pool's hook lets nobody else add liquidity to share it
Creator0Creators hold what they buy, nothing more

04 The honest weaknesses

05 What is real in this build

Everything on the pad is read from the chain: the coins from the launcher, prices from each pool, the line from the pool's Swap logs, holders from Transfer logs. The animated pulses on the tree are real swaps, read from the PoolManager every few seconds.

The contracts are this pad's own, tested against Uniswap's own v4 PoolManager and run on a fork of mainnet before deployment. They have not been audited by anyone outside the project. Read what this build actually is before putting in anything you would mind losing.