Where it goes

Down is the only direction this thing has

Three contracts, and a launched token makes a fourth. Every one of them is verified on the explorer with its source published under MIT, so none of what follows has to be taken on trust.

The pour

What one transaction does

  1. 01

    It prints the supply and splits it at once

    Both mints happen inside the token's constructor and both appear as transfers from the zero address, so who got what is in the launch transaction rather than in anybody's word for it. There is no mint function afterwards. No owner, no pause, no blacklist, no upgrade path.

  2. 02

    It opens the pool

    Native ETH against the token, on Uniswap v4, with the grate in the pool's key and no LP fee at all. Native ETH is address zero, so it is always the lower currency and the launched token is always the other side — there is no WETH and no ordering to discover.

  3. 03

    It sends the pool's share down

    Into the sump, as one position, below the opening price. Below, because a pool that opens above its whole range is a pool asking only for the token — so the first buy fills immediately and the sump is never asked for ETH it does not have.

The grate

A share of everything that crosses it

Every pool charges on the way in, both directions. Buy with ETH and the charge is kept in ETH; sell the token back and it is kept in the token. What is kept is split between whoever poured the token and the treasury, and neither side of that split has a setter.

A pool's hook is part of its key, which means the rate is fixed the moment the pool is opened. Not governed, not timelocked, not voted on: a different hook would be a different pool, not this one with the rate changed.

It is banked as a claim against the pool manager rather than lifted as cash mid-swap. Lifting cash at that point would revert on a pool that holds no ETH yet — which every pool is until its first buy — and the launch would simply be unbuyable. The claim is redeemed later, in a transaction of its own.

The rate and the split are constants in the grate's source. Read them there; this page will not repeat a figure the contract already states better.

The sump

There is no pump on it

Liquidity leaves a Uniswap v4 pool through exactly one door — a modifyLiquidity call with a negative delta. Search the sump's source for one. There is not one: the only such call in that contract passes a positive delta.

No withdraw, no owner, no pause, no emergency hatch, no upgrade path. And a v4 position is not an NFT — it is a row in the pool manager keyed by the address that added it — so there is no object to sell, lend against, or approve away by accident.

One sump holds every launch, keyed per pool, so no launch can reach into another's liquidity.

The honest part

The share that is not locked

Part of every supply is minted straight to a wallet the creator nominates, and it is liquid from the first block. Not vested, not cliffed, not locked. No contract here restrains it and none of them pretends to — the token has no machinery for it at all.

That is the honest cost of this design, and it is worth reading as exactly what it says: whoever holds that wallet can sell into any bid that appears. The launchpad's job is not to stop them. It is to make sure nobody had to guess.

One thing that share is not, on day one: sellable. A pool nobody has bought from holds no ETH, so there is nothing to pay a seller with. It becomes sellable only as the pool fills.

On chain

Where to check all of it

Each one is verified with its source published under MIT. An address on a page is the one thing a reader cannot check by reading the page, so check these on the explorer before trusting anything here.

Pour a token