How bailout works
bailout is a launchpad on Solana built on the pump.fun program. Coins launched here are ordinary pump.fun coins: same bonding curve, same graduation to PumpSwap, tradable on pump.fun, Jupiter, any bot. The one difference is who the creator is. It's a bailout vault, and the vault pays the holders who are losing.
The tide
Roughly every 10 minutes, for every coin, a tide runs:
- Sync. New trades are pulled from chain and every holder's balance is snapshotted.
- Claim. Creator fees accrued on pump.fun (bonding curve and PumpSwap) are claimed into the vault. The launcher's share and the platform's share are paid out immediately.
- Bail out. Whatever the vault holds is split across underwater holders. Each holder's payout is capped at their uncompensated loss, so nobody is paid past the surface. Leftovers from capped holders flow to the rest.
- Survive. Everyone still holding gets +1 on their streak.
Every claim, split and payout is a plain SOL transfer signed by the vault, with its signature listed in the coin's ledger.
Depth, loss, and what you're owed
For one wallet in one coin, over its current dive (everything since its last sell or transfer out):
avgEntry = SOL spent on buys / tokens bought (pump fees included, tx fee & rent excluded)
eligible = min(tokens held now, tokens bought) (transfers in never count)
depth = (avgEntry − price) / avgEntry (0 when above water)
loss = (avgEntry − price) × eligible
owed = loss − paid so far this dive (never below 0)
weight = owed × (1 + 0.05 × min(streak, 10))
payout = min(owed, vault × weight / Σ weight) (re-split until nothing is stranded)Price is read from the bonding curve while bonding, and from the PumpSwap canonical pool after graduation. Trades are reconstructed from token and SOL balance changes on every transaction that touched the curve or the pool, so buys through pump.fun, Jupiter, bots or this site all count the same.
The three rules
- Buy and hold. Your average entry is built from your real buys. Buy more, and your entry moves.
- Never sell, never transfer out. Either one ends the dive: cost basis, paid-out total and streak all reset. Your next buy starts dive #2 from scratch. This is what makes the vault unfarmable.
- Be underwater. If the price is above your entry, you need nothing and get nothing. The moment it dips below, you're in the next tide.
Fees, honestly
pump.fun's creator fee on a SOL-quoted coin is set by the protocol, not by us:
| Where | Creator fee | Notes |
|---|---|---|
| Bonding curve | 0.30% of every trade | plus 0.95% protocol fee, to pump.fun |
| PumpSwap (graduated) | 0.30% → 0.05% | tapers as market cap grows; LP and protocol fees apply on top |
Every claimed creator fee is split, fixed at launch:
| Recipient | Share |
|---|---|
| Underwater holders (the vault) | 75% – 90% |
| Launcher | 0% – 15% (launcher's choice) |
| Platform | 10% |
For launchers
- You sign one transaction from your own wallet:
create_v2, plus your dev buy when it fits. You pay mint rent and your buy, nothing else. - The coin's on-chain creator is a fresh keypair generated for your launch, encrypted at rest with the platform's master key. It only ever signs claims and SOL transfers to holders, launcher and platform.
- Your share (0–15%) is paid every tide, straight from the vault. Pick 0% and every fee goes to holders; the coin page says so.
- Your own tokens are tracked like anyone else's. If you dump, your dive ends like anyone else's.
Known limits
- Tracking starts at creation. Only buys after launch count, which is every buy.
- Cost basis is per wallet. Splitting a bag across wallets makes several small dives; it doesn't change the total you're owed, and every transfer out ends a dive.
- Minimum payout is 0.001 SOL; smaller amounts wait in the vault and stay owed.
- Cadence depends on the scheduler; the countdown is an estimate.
- Transaction fees for tides are paid by the platform wallet, not the vault.
For builders
Everything on the site is served by public JSON endpoints:
GET /api/launches all coins with vault totals
GET /api/launches/:mint state, vault, divers, tides, payouts, ledger (?wallet= for "me")
POST /api/launches/:mint/trade unsigned buy/sell tx for a wallet
GET /api/wallet/:address every dive a wallet is on
GET /api/sonar recent bailouts + global statsRisk disclosure
Coins launched here are speculative and can go to zero. Payouts depend entirely on trading volume, on the vault's balance and on whether you are eligible at the moment a tide runs; they can be zero for any length of time. Recovery of losses is not guaranteed and not implied. The vault key is held by the platform; if the platform disappears, fees keep accruing to the creator vault on pump.fun but tides stop. Nothing here is financial advice. Trade only what you can afford to leave underwater.