HyperSwap V3 · HyperEVM · chain 999
Markets quoted in leveraged HYPE, not stablecoins.
A launch deploys a fixed 1,000,000,000-supply token and opens a HyperSwap V3 pool against a HyperEVM leveraged token — HYPE5L (Bounce 5x long HYPE), LHYPE (Looped HYPE) — or plain WHYPE. No bonding curve: the launchpad mints one single-sided, token-only position from the opening price to infinity, so the creator supplies zero quote asset. Markets open at a $3,000–4,000 start cap by default, with an optional dev buy hard-capped at 10% of supply and filled inside the launch transaction. On-chain, FDV is denominated in raw quote units — the USD figure is a frontend conversion; there is no oracle in the contracts.
—
This is the only official contract address. Anything else using the name is not ours.
- Total supply
- 1,000,000,000
- LP position
- single · 100%
- Price ceiling
- none — open-ended
- V3 fee
- 1.00%
- Tick spacing
- 200
- Fee split
- 60 / 40
- Launch fee
- 0.02 HYPE
- LP withdrawal
- none
Launch console
Every field is validated against the registry bounds for the selected quote, then simulated with an
eth_call preflight at the 30M big-block gas budget before the send button unlocks.
Markets
All launches, read directly from the launchpad. Anyone may trigger a fee claim; proceeds route to the creator and treasury by the configured split — never to the caller.
| # | Token | Quote | Opening FDV | Spot / token | vs open | Pending fees | Links |
|---|
No launchpad address set — market data is unavailable until the contracts are deployed.
Quote lineup
Whitelisted quotes: WHYPE for a normal HYPE-paired market, plus the leveraged tokens that actually have DEX depth on HyperEVM. Bounds are enforced on-chain by the QuoteRegistry, in raw quote units for the whole 1B supply.
Read this before you buy
- Only the listed quotes have real DEX liquidity. HYPE5L trades on Project X (HYPE5L/USDC) and HyperSwap (ALT/HYPE5L), roughly $125k combined; LHYPE has ~$540k across Kittenswap, HyperSwap and Hybra. Every other leveraged product on HyperEVM (Toros, SIR, other Bounce tokens) has no usable pool, which is why it is not here. Auto-route HYPE → quote goes through LI.FI's HyperEVM aggregators; HYPE5L can also be minted directly on Bounce.
- Leveraged tokens decay. A market quoted in HYPE5L is a relative bet against a 5x-long, rebalancing instrument, not a USD bet. A flat chart in quote terms can still be a loss in dollars, and the reverse. LHYPE tracks ~1x HYPE plus looped yield.
- Liquidity is permanent and one-sided. The launchpad holds the V3 position with no withdrawal path. It never holds quote assets at open: the entire opening book is launch tokens sitting above the opening price.
- No oracle, no floor. Nothing in this system reads a USD price. There is no buyback, no treasury bid, and no guarantee a market trades at or above its opening FDV.
Mechanics
The contract surface is small on purpose: one launch function, one fee claim, and a registry that gates the quote assets.
-
01
Fixed supply, minted once
1,000,000,000 tokens, 18 decimals, no mint authority after construction, no transfer tax. Rounding dust left on the launchpad is burned in the same transaction.
-
02
One open-ended curve
100% of LP supply is minted into a single HyperSwap V3 position from the opening tick to the maximum usable tick (887,200), so the market trades like a plain constant-product curve with no price ceiling. The pool is initialised exactly at the range floor, so the position is pure token — zero quote asset from the creator.
-
03
Buyers bring the quote asset
There is no bonding curve to graduate from. The V3 range is the curve: every buy walks price up and it keeps going — no cap, no migration, LP is permanent from block one. Trade it on HyperSwap or any router that reads the V3 factory.
-
04
Permanent LP, fees only
The position is owned by the launchpad contract directly (no NFT, no decrease path).
collectFees(id)is the only exit for value, splitting accrued swap fees 60% creator / 40% protocol. -
05
Registry gating
Each quote carries min and max opening FDV, the 1% V3 fee tier and tick spacing 200. A disabled quote reverts with
QuoteNotTradable; a quote whose pool already exists reverts withPoolExists. -
06
Priced in quote units
"4,600 HYPE5L of opening FDV" means the whole supply is worth 4,600 HYPE5L at open. The console converts a USD start cap into quote units using the deepest DexScreener pool or LI.FI's token price, and you can override the price by hand. Nothing on-chain reads USD.
-
07
Dev buy, capped at 10%
The launch call can carry
devBuyQuote: the launchpad pulls that much quote from the creator, swaps it through the fresh pool in the same transaction, and sends the tokens straight back. Fills above MAX_DEV_BUY_BPS = 1000 revert withDevBuyTooLarge; adevBuyMinTokensfloor guards against being front-run on the open.previewDevBuyshows the exact fill before signing. -
08
Funding the dev buy from HYPE
The console reads your quote balance and allowance. For the WHYPE quote it simply wraps the shortfall from your wallet. For HYPE5L and LHYPE it asks LI.FI for a HYPE → quote route on HyperEVM (enso, gluex, hyperbloom, kyberswap…); when no route exists it hands you to the mint / swap page and keeps polling until the balance lands, then unlocks the approve step.
-
09
Big blocks
HyperEVM runs two block lanes: fast blocks (~3M gas, 1s) and big blocks (30M gas, ~1 min). Pool creation + one-sided mint + dev buy is ~5.7M gas, so the launch transaction only fits a big block. The sender flips their address with the HyperCore action
evmUserModify; the console sends the launch with a fixed 7.5M gas limit and preflights it at 30M.