Token safety
How to Burn Solana Tokens & LP Tokens (Incinerator Guide)
Burning a Solana token permanently reduces its supply on-chain. Here is how burning actually works, how to burn LP tokens to lock liquidity, and what the incinerator address is.
Burning is one of the most misunderstood actions on Solana, partly because people carry over intuitions from Ethereum that don’t apply. So let’s be precise: burning permanently destroys tokens and lowers the mint’s total supply, and it’s done with a specific program instruction — not by sending tokens to a “dead address.” Get the mechanics right and burning becomes a clean, verifiable tool for two very different jobs: managing supply, and locking liquidity so it can’t be rugged.
What burning actually does
A burn uses the Token program’s Burn (or BurnChecked) instruction. It decreases a token account’s balance and reduces the mint’s total supply by the same amount, in one on-chain step. The tokens aren’t moved somewhere — they cease to exist, and the supply figure everyone can read drops accordingly. You can confirm the new supply immediately on Solscan or through any RPC. The full mechanics are in Solana’s burn documentation.
A burn changes the supply itself. That’s what makes it verifiable — the reduction is a fact on the mint, not a promise about where some tokens went.
The incinerator address, explained
You’ll see Solana’s incinerator address — 1nc1nerator11111111111111111111111111111111 — described as a burn address. It’s worth understanding the distinction, because it trips up even experienced people.
That address is keyless: no one holds its private key, so anything sent there is unrecoverable. But sending tokens to it is a transfer, not a burn. The tokens leave circulation, yet the mint’s total supply is unchanged — they still exist, just in an address nobody can open. A true burn uses the Burn instruction and lowers total supply. For honest, verifiable supply reduction, that’s the one you want; a burn tool uses it directly.
Use case 1 — reducing token supply
Burning supply is deflationary by definition: fewer tokens exist afterward. Common reasons to do it:
- Deflationary tokenomics — a scheduled or event-based burn that permanently shrinks supply.
- Cleaning up test mints — destroying tokens you minted while testing, so the real supply is clean.
- Honoring a commitment — burning an allocation you promised not to keep, provably, rather than just moving it out of sight.
Because a burn is irreversible, mint your full intended supply and be certain of the number before you burn — there’s no minting it back unless you’ve kept the mint authority, and if you’ve revoked mint authority to fix the supply, there’s no way back at all.
Use case 2 — burning LP tokens to lock liquidity
This is the burn that matters most to buyers. When you open a liquidity pool, you receive LP tokens representing your claim on the pool’s liquidity — and whoever holds them can withdraw all of it. Burning those LP tokens destroys the claim, which means the liquidity can never be withdrawn, by anyone. That’s the on-chain guarantee behind “liquidity locked forever,” and it’s the reason so many launches burn their LP the moment the pool is live.
Burning the LP is permanent and un-ruggable, but it’s not always the right call — sometimes you want the liquidity back on a schedule, which means locking instead. Which to choose is a real decision, and it has its own guide: lock or burn liquidity, and which to choose. This post is about how the burn itself works; that one is about when to reach for it.
How to burn a token, step by step
- Connect your wallet and open the burn bench. It lists the SPL and LP tokens you hold with their balances.
- Select the token — the supply token you want to reduce, or the LP token you want to destroy to lock a pool.
- Enter the amount. Burn part of a balance or all of it. For an LP burn to fully lock a pool, that’s the entire LP balance.
- Confirm the consequence. Because burns are irreversible, the action arms and asks for a deliberate second confirmation — the exact amount and its permanence are spelled out. Nothing burns on a single click.
- Sign once. The burn settles in one transaction and the supply drops immediately. If it fails, nothing is destroyed and nothing is charged.
After a burn: reclaim the account rent
Burning a balance to zero empties the token account but doesn’t close it, so its ~0.002 SOL of rent stays locked. Once you’ve burned a token to zero and no longer need the account, close it to reclaim the rent — the same mechanic covered in closing empty token accounts. It’s a small amount, but it’s yours, and cleaning up keeps your wallet’s token list honest.
Prove it on the certificate
For an LP burn especially, the value is in the verification. Publish a token certificate and the burned-liquidity guarantee shows as a struck hallmark, read live from the chain — buyers confirm the liquidity is gone-for-good without trusting a screenshot. A burn nobody can verify does half the work; a burn on a public certificate does all of it. When you’re ready, the burn bench walks the burn with the consequence stated plainly before you sign.
Frequently asked questions
What does burning a token do on Solana?
Burning permanently reduces a token account balance and the mint's total supply by the same amount, using the Token program's Burn instruction. The tokens are destroyed on-chain, not moved — the supply number drops and cannot be restored. Anyone can verify the new supply on Solscan.
Does Solana have a burn address?
Not in the way Ethereum does. The correct way to burn on Solana is the Burn instruction, which destroys tokens and lowers total supply directly. There is a keyless "incinerator" address (1nc1nerator11111111111111111111111111111111) that no one controls, but sending tokens there only removes them from circulation — it does not reduce the mint's total supply. A true burn uses the Burn instruction.
What happens when you burn LP tokens?
Burning your liquidity-pool (LP) tokens permanently destroys your claim on the pool's liquidity, which means no one can ever withdraw it — the liquidity is locked forever. It is the strongest signal to buyers that you cannot pull the liquidity, and it is why many meme coins burn their LP right after opening a pool.
Is burning tokens reversible?
No. A burn is final — the destroyed tokens are gone and the reduced supply cannot be undone by you or anyone. Because it is irreversible, only burn an amount you are certain about, and double-check you are burning the right token before you sign.
Can I get SOL back after burning a token to zero?
Burning the tokens brings the balance to zero but does not close the account, so the ~0.002 SOL of account rent stays locked until you close it. After burning, close the now-empty account to reclaim that rent — some flows do both, burn then close, in sequence.