Using HartiiLabs — FAQ
HartiiLabs is the token launchpad for Quai Network: anyone can launch a token with a bonding curve, trade it the moment it is live, and — since 2026-09-23 — give it a standard HartiiSwap pool. Every number in the app is a real on-chain read.
How does the launchpad work?
Each token is paired with its own bonding curve — a contract that holds the liquidity and prices the token from how much has been sold. That means instant trading (the curve always buys and sells), fair launch by default (presets set the creator allocation to 0% for meme and experimental launches; other types disclose it up front), and the curve holds the QUAI, not the creator. When the curve sells out it graduates into its own internal pool whose liquidity can never be withdrawn. The math is in Bonding curve; how to price a token is in Pricing a token.
How do I burn my tokens?
Use the Burn panel on the token's page. Sending tokens to the zero address (0x000…000) always
fails — a deliberate guard against destroying tokens by mistake. Each token has a real burn()
function that lowers total supply and records the burn on-chain; the Burn panel calls it and shows
how much you can burn right now.
Why can't a creator send or burn their whole balance?
A creator's allocation vests linearly over 7 days (VESTING_DURATION = 7 days). Until it is
fully vested, the still-locked part cannot be transferred or burned — small amounts go through,
larger ones are refused. The Creator page shows a live lock bar. Regular holders have no lock at all.
Why did my send fail even below the vesting limit?
Every transfer needs a little native QUAI for gas, paid from the same wallet and separate from your token balance. With no QUAI, no send goes through. A stuck earlier transaction can also block the next one until it clears. Top up QUAI (or clear the pending transaction) and retry.
My token isn't showing in my wallet — is it gone?
No. Wallets such as Pelagus only show tokens you have added by contract address. Import the token's address once and your balance appears — the tokens were on-chain and yours all along.
What changes when a token graduates?
When the curve sells out (or reaches its raise target) it switches from formula pricing to an internal pool seeded with the real QUAI raised and the remaining tokens. That liquidity is locked by construction — the contract has no withdraw function. Your tokens stay freely transferable and burnable before, during and after graduation. Expect a small price step at the graduating trade; see Bonding curve › Graduation mechanics.
Can a token also have a normal liquidity pool?
Yes. Anyone can create a HartiiSwap pool for any token from its page (Create the first pool) and anyone can add liquidity to it. The pool and the curve are separate markets; arbitrage keeps their prices close. See HartiiSwap › Liquidity.
Can a creator secretly disable selling (a honeypot)?
No. The token is a plain ERC-20 with no transfer fee, no blacklist, no pause and no owner transfer hooks — there is no place in the contract to add one. The only restriction anywhere is the time-based creator vesting above.