What Burning Actually Does
Burning an SPL token means sending it to an address that no private key controls. The tokens are still recorded onchain (the supply ledger has not changed), but they cannot move again. By every reasonable definition, they are gone.
On Solana, the standard burn operation calls the SPL Token program's burn instruction, which directly subtracts the amount from circulating supply. The mint's total supply decreases. Block explorers update. DEX trackers reduce the circulating supply they display. Done.
[stats]
Operation | Burn | Supply minus
Cost | ~0.000005 SOL | Just network fee
Reversible | No | Permanent
Visibility | Instant | DexScreener, Solscan, Jupiter
[/stats]
When You Burn
Three legitimate reasons to burn tokens:
Supply control. A creator who minted too many tokens at launch can burn the excess to bring the circulating supply closer to the intended target. Common with fair-launch projects that started at 1B and want to land at 100M.
LP burn after launch. Burning the LP tokens of a Raydium or Orca pool is the strongest signal a creator can send that the liquidity will not be pulled. It is more committal than time-locking. Most legitimate fair-launch tokens burn their LP within hours of pool creation.
Symbolic destruction. A team that has been holding allocations they no longer need (community treasury, founder vest, marketing reserve) can burn them publicly. Pump.fun's $370M burn in April 2026 is the canonical example of how a symbolic burn can move sentiment.
When You Should Not Burn
There are also bad reasons to burn:
To pump price. Markets do not move 1-for-1 with supply changes. A burn that is not telegraphed in advance often does not pump the chart at all. A burn that is telegraphed often pumps before the burn, then sells off after.
Because of pressure. If your community is asking for a burn and you are not sure why, do not burn. The decision is irreversible.
Without verifying the destination. A burn to the wrong address (a hot wallet, an exchange deposit) is not a burn. The tokens remain in circulation. Always burn to a recognized burn program or to a Program Derived Address with no key.
How to Burn Step by Step
There are three paths to actually burning tokens.
Path 1: ManagerNest Burn Tool (Recommended)
The simplest route. The ManagerNest Burn tool handles wallet connection, token discovery, amount entry, and the burn transaction in one flow.
Steps:
- Connect your wallet.
- The tool lists every SPL token you currently hold with a non-zero balance.
- Select the token, enter the amount to burn.
- Sign one transaction. The platform fee is 0.02 SOL.
- Network fee (~0.000005 SOL) is added to the same transaction.
The whole thing takes 30 seconds. The transaction signature is logged so you can share it as proof of the burn.
Path 2: Phantom Wallet (Manual)
Phantom supports burning a token from its UI directly, though the workflow is buried.
- Open Phantom, navigate to the token.
- Click the three-dot menu.
- Select "Burn token".
- Enter the amount.
- Confirm.
Phantom does not charge a platform fee, but the burn is one transaction at a time. For multiple tokens, the tool path is faster.
Path 3: CLI (For Developers)
For programmatic burns, use the SPL Token CLI:
`
spl-token burn <TOKEN_ACCOUNT> <AMOUNT>
`
Where TOKEN_ACCOUNT is your associated token account for the mint (not the mint address itself) and AMOUNT is the human-readable token amount, not lamports.
The CLI path is required for large-scale, automated burns where you are burning across many wallets.
Burning LP Tokens
Burning the LP token of a Raydium or Orca pool is a special case worth covering separately.
When you create a Raydium V4 pool, you receive an LP token that represents your share of the pool. Burning the LP token permanently locks the liquidity: nobody, including you, can withdraw it.
To burn LP tokens:
- Identify the LP token mint (Raydium displays it in the pool details).
- Use the same burn flow as any other SPL token.
LP burn is one of the strongest signals an analyzer like ManagerNest's Token Analyzer checks. A token with burned LP scores significantly higher on rug-risk metrics.
Common Pitfalls
Three things that go wrong with burns:
Burning the wrong amount. Tokens have decimals. A burn of "1000000" with 6 decimals is one token, not a million. Always double-check the human-readable amount the tool displays before confirming.
Burning the wrong mint. Make sure the mint address matches the token you intend to burn. Memecoins often have lookalike mints.
Forgetting to verify after the burn. Always check the explorer after the burn confirms. The transaction should show "Burn" with the correct amount, and the circulating supply on DexScreener should update within 30 seconds.
How to Verify a Burn
Anyone who claims to have burned tokens can be verified onchain. To check:
- Find the burn transaction signature.
- Paste it into Solscan or Solana Explorer.
- Look for a "BurnChecked" instruction in the transaction. The instruction shows the mint, the amount, and the wallet that called burn.
- Verify that the mint's total supply on the explorer has decreased by the burned amount.
If any of these checks fail, the "burn" was not a real burn. Either the wrong instruction was used, or the tokens were just transferred to another wallet.
Costs Summary
The platform fee on the ManagerNest tool covers transaction routing, the burn UI, multi-burn support, and a record of the burn that you can share. For one-off small burns, the Phantom path is cheaper. For LP burns or any burn where proof matters, the platform tool is the standard choice.
Frequently Asked Questions
Can I burn tokens that someone else holds?
No. You can only burn tokens from a token account whose authority you control. Burning someone else's tokens would require their private key.
Is burning reversible?
No. Once tokens are burned, they cannot be recovered by anyone, including the original mint authority.
Does burning lower the price of the token?
Burning reduces supply. If demand stays constant, the equilibrium price goes up. Markets do not always react this cleanly: a burn that is expected pumps the chart before the burn happens.
Should I revoke mint authority before burning?
Order does not matter. You can burn before or after revoking. If you have not revoked yet and you want a token with truly fixed supply, do both: burn the excess, then revoke. See our revoke authority guide for the full flow.
What is the difference between burning and revoking authorities?
Burning destroys tokens. Revoking authorities makes the mint immutable (no new tokens can ever be minted). They are separate operations that work together but are not the same thing.