Core Concepts

Fees & Tokenomics

Every token has the same fixed, transparent parameters.

Constants

ParameterValue
Total supply1,000,000,000
On the bonding curve800,000,000 (80%)
Reserved for the Uniswap pool200,000,000 (20%)
Virtual token reserve200,000,000
Virtual ETH reserve2 ETH
Graduation raise8 ETH
Trade fee0.5% (50 bps)
Creator share of the fee70%
Platform share of the fee30%
Max trade fee (hard cap)1% (100 bps)
Creation fee0 (gas only)

Creator fees

70% of every trade fee flows back to the token's creator. On the 0.5% fee that means the creator earns 0.35% of trade value and the platform keeps 0.15%. It applies to buys and sells, forever — including after the token graduates to Uniswap (for trades that still happen on the curve).

Creator fees accrue to a claimable balance rather than being pushed on every trade — a pull-payment, so a creator whose address happens to reject ETH can never accidentally brick trading of their own token. Earnings sum across all tokens a wallet has launched.

  • creatorEarnings(address) — view your unclaimed balance.
  • claimCreatorFees() — withdraw it to your wallet.
Note.The 70/30 split is a fixed constant (CREATOR_FEE_SHARE_BPS), not an owner-adjustable setting — creators can rely on it.

The curve

The invariant is k = (VIRT_TOKEN + CURVE_SUPPLY) × VIRT_ETH. The virtual reserves are chosen so that selling the full 800M curve supply collects exactly the graduation raise:

graduation = VIRT_ETH × CURVE_SUPPLY / VIRT_TOKEN = 2 × 800M / 200M = 8 ETH

How we compare

OG LaunchpadTypical launchpad
Trade fee0.5%1%
Creator revenue share70% of the feerarely
Duplicate namesblocked on-chainallowed
Public APIyesrarely
LP at graduationburnedburned
Note.The fee is owner-adjustable but can never exceed the 1% ceiling enforced in the contract, so it can't be rugged higher.