What it is
A bonding curve launch replaces a traditional token sale or exchange listing with a smart contract that mints and prices tokens algorithmically. Anyone can buy directly from the contract at a price determined by a formula (the "curve"), and the price increases as more tokens are bought and decreases as tokens are sold back. There's no order book and no need for a market maker to show up first — the curve is always the counterparty.
How it works
- A creator deploys a contract holding a mathematical curve (commonly linear or exponential) that maps total tokens issued so far to the current price.
- The first buyer pays the lowest price on the curve; the contract mints tokens to them and moves the cumulative supply counter forward.
- Each subsequent buy moves further along the curve, so price rises with every purchase — early buyers systematically pay less than later buyers.
- Funds paid in (often a base asset like ETH or a stablecoin) accumulate inside the contract as reserves, rather than going to the creator directly.
- Sellers can typically sell back into the curve at the current price, with the contract burning their tokens and refunding reserves according to the same formula, which keeps a floor price tied to the accumulated reserves.
- Many implementations set a graduation threshold: once the curve reaches a target market cap or reserve amount, the remaining liquidity is migrated to a standard AMM pool (like Uniswap) and the bonding-curve contract stops trading, "graduating" the token to normal exchange trading.
Why designers use it
- Removes the need for a presale, VC round, or centralized listing — anyone can be the first buyer with no gatekeeper.
- Guarantees continuous liquidity from the moment of launch, since the curve itself is always willing to buy or sell.
- Aligns early support with lower entry price, rewarding people who believe in a project before it's proven.
- Creates a transparent, deterministic price discovery process instead of an opaque initial listing price set by insiders.
Failure modes
- If insiders or the creator buy first and dump into retail demand right after, later buyers absorb losses in a pattern sometimes called a "rug" even without any explicit fraud.
- Bots that watch for new curve deployments can buy the first block of tokens within seconds, capturing most of the cheap supply before humans can act.
- If the curve's reserve isn't fully backing outstanding supply (e.g., a portion of funds is skimmed as fees), the sell-back floor can be lower than buyers expect.
- Thin, illiquid curves are highly volatile — a single moderately sized buy or sell can move price by large percentages, inviting manipulation.
What to check before using it
- Read the exact curve formula and confirm whether reserves fully back the sellable floor price or whether fees are taken out first.
- Check for anti-sniping protections (e.g., per-wallet caps, launch delays, or randomized start) if fair distribution matters.
- Understand the graduation mechanics: what triggers migration to a standard AMM, and who controls that migrated liquidity.
- Verify whether the creator or any insider wallet has a head start or special allocation before public trading opens.