How it works

Four contracts, and nothing behind them. There is no owner, no pause, no upgrade path and no admin key anywhere in this system.

A launch is one transaction

It deploys the token, whose constructor mints the entire fixed supply and splits it there and then between the glacier and a wallet the creator names. Neither share ever passes through the launchpad, and both mints appear in the launch receipt.

Then it opens a Uniswap v4 pool of native ETH against the token — LP fee zero, the hook in the key — priced at the top of the launch range, and puts the glacier’s share in as one position.

What the glacier cannot do

Liquidity leaves a v4 pool through exactly one door: a `modifyLiquidity` call with a negative delta. The only such call in that contract passes a positive one. There is no withdraw, no owner, no pause, no emergency hatch and no upgrade path — and the position is a row in the pool manager rather than an NFT, so there is no object to transfer, sell or lend against either.

The fee is fixed by the pool’s own key

A fee is taken on everything paid into a pool, in either direction, and split between whoever launched the token and the treasury. Both figures are constants with no setter — read them off the hook rather than from this page.

A pool’s hook is part of its key, so the rate is decided when the pool is opened and cannot be raised or switched off afterwards. A different hook is not this pool with a different rate; it is a different pool. And because the pool’s own LP fee is zero, the hook’s rate is the entire fee schedule.

What this does not restrain

The share minted to the supply wallet is liquid from the first block. Not vested, not cliffed, not locked — the token contract has no machinery for any of those, and nothing here pretends otherwise. Whoever holds that wallet can sell into any bid that appears.

It is a constant rather than a per-launch setting, so there is one number to check rather than one per token, and it is checked in the contract. What that wallet cannot do on day one is sell into a pool holding no ETH: the whole position is still token until somebody buys.

Read them yourself

All three are verified, with the source published under MIT. Every figure this page describes in words is a named constant in there — that is where it is binding, and where it is worth checking.