Launchpad · Uniswap V4

One pool, from the first buy to the open market.

Every other launchpad moves your liquidity between a curve contract and a exchange at exactly the moment everyone is watching. That window is where launches go wrong. On V4 there is no window — the curve and the market are the same pool, and graduation is a state change rather than a migration.

1Survey

The pool is keyed before anyone buys

The curve, the graduation threshold and the fee schedule are set at initialisation and readable from that moment. Nothing about the launch is decided while it is running.

2Raise

Buys price off the bonding curve

A beforeSwap hook quotes the curve and returns the delta itself, so the pool prices trades without any liquidity positions existing yet. Early buyers trade against the curve, not against each other.

3Occupy

The threshold seeds real liquidity

On hitting the target the hook seeds a position with the reserves it has collected and stops overriding prices. Same pool, same key, same address — the venue does not change underneath anyone.

4Recycle

Fees compound and the next launch keys

Trading fees route to their published destinations on every swap. Creating the next pool is a state write in the singleton, not a deployment.

Fair-launch controls

All of these are the same thing under the hood — a beforeSwap hook refusing or clamping a trade — and all of them are readable before anyone commits money.

Fees that move

A pool initialised with the dynamic-fee flag hands its fee schedule to the hook, which can change it per swap. That turns the fee from a constant into a tool.

Guarantees that are structural

The difference between a launchpad saying liquidity is locked and liquidity being locked is whether there is code that could unlock it. These are the second kind.

What the singleton pays for

Every pool living in one contract is not a detail. It changes what a launch costs and what a new token is worth on day one.

What it costs you

A features page that only lists upsides is an advert. These are the real constraints, and none of them are dealbreakers — they are just things you should know before you commit.

Built for Robinhood Chain

EVM 4663 (0x1237), EVM-equivalent, post-Cancun — so V4 deploys unmodified. Same instinct as the rest of Unipedia: publish the mechanism on the surface people actually look at.

$UNIPEDIA on the launchpad