Back to Blog
Solana

Sol Burner: How to Burn Solana Tokens and Reclaim SOL

S
Sol Slugs Team
Sol Incinerator

A sol burner is any tool that destroys unwanted Solana assets and hands you back the SOL locked underneath them. The category exists because of a quirk of Solana's design: holding a token costs you a refundable deposit, and getting that deposit back requires an action no wallet performs for you.

This is a practical guide to what a sol burner does, what separates a good one from a limited one, and what you should actually expect to get back.

What does a sol burner actually do?

It runs two on-chain operations. Burn destroys a token permanently, reducing its supply. Close then reclaims the account's rent-exempt deposit of ~0.00204 SOL. You cannot close an account that still holds tokens, so burning is what unlocks the refund.

Why burning returns SOL at all

Every SPL token account on Solana holds a rent-exempt deposit — about 0.00204 SOL, exactly 0.00203928 — for as long as it exists. This is not a fee. It is refundable collateral for the storage the account occupies, and it returns in full to the account owner on close.

The problem is that Solana never cleans up after you. Sell a memecoin and the balance goes to zero, but the account stays open, still holding your deposit. Receive an airdrop you never wanted and an account is created for it automatically. Over a couple of years of trading, a wallet quietly accumulates hundreds of these.

A sol burner exists to reverse that accumulation:

  • For accounts that are already empty, it simply closes them. Nothing is destroyed — this is pure recovery with no downside.
  • For accounts that still hold something you do not want, it burns the balance and then closes the account in the same transaction.

What you get back, by asset type

AssetTypical returnWhy
Empty token account0.002 SOLOne rent deposit released
Dead SPL token0.002 SOLBurn, then close the same account
LP token0.002 SOLSame structure as a token account
Standard NFT~0.01 SOLToken + metadata + edition accounts
Programmable NFTVariesExtra token record account
Compressed NFT0 SOLLives in a merkle tree — no account, no deposit
Bonfida (.sol) domainReclaims account rentDomain accounts hold their own deposit

The compressed NFT row is the one that generates the most confusion. cNFTs are stored as leaves in an on-chain merkle tree rather than in individual accounts, which is exactly what makes them cheap enough to airdrop by the hundred thousand. No account means no deposit means nothing to reclaim — with any tool. Burning them is still worth doing to clear phishing bait out of your wallet, but the payout is zero. Full explanation here.

What separates a good sol burner from a limited one

Breadth of asset support. This matters far more than it sounds, because of a subtle failure mode: assets a tool cannot handle simply do not show up in its list. You run the cleanup, the interface reports success, and your wallet looks clean — while pNFTs, LP tokens, Token-2022 accounts, and domains sit untouched, still holding rent. A narrow burner does not tell you what it skipped.

Token-2022 support. A growing share of new launches use Token Extensions rather than the classic SPL Token program. A burner that only understands classic SPL walks straight past that rent.

Programmable NFT handling. pNFTs are held frozen to enforce royalties, and a naive burn instruction against a frozen account fails outright. Handling them requires thawing the delegated account as part of the same flow — most tools do not implement this.

Fee rate, taken from recovered SOL only. Fees in this category vary enormously, from around 2% to 20% of the rent you recover. Since every tool performs the identical CloseAccount instruction, the fee is the entire difference in outcome. Sol Incinerator pays you a flat 0.002 SOL per closed account out of ~0.00204 SOL, a fee of about 1.93%.

Safety controls. Burning is irreversible, so the interface is doing real work. Look for valuable assets hidden from bulk selection by default, extra confirmation on large burns, and a non-destructive default mode.

A read-only scan. You should be able to see exactly what is reclaimable before signing anything at all.

Never connect a wallet to a burner that asks for a seed phrase or private key. A legitimate sol burner is non-custodial: it builds transactions that you review and sign in your own wallet, and it never has access to your keys. There is no scenario in which one needs your seed phrase.

How Sol Incinerator handles it

Sol Incinerator is the original Solana burner, live since December 2021 and built by the Sol Slugs team. It runs three modes so the destructive parts are opt-in:

  • Fun Mode is the default and strictly non-destructive. It only closes accounts that are already empty, so nothing you hold can be affected. On an older wallet this alone is usually the bulk of the recovery.
  • Pro Mode unlocks burning of tokens, NFTs, pNFTs, editions, compressed NFTs, and domains, with assets above a USD threshold hidden by default and extra confirmation on large burns.
  • Dev mode exposes the LP token and unknown-token tabs plus select-all, for power users who know precisely what they are looking at.

It supports both classic SPL Token and Token-2022, batches everything into as few signatures as possible, and its fee wallet burn68h9dS2tvZwtCFMt79SyaEgvqtcZZWJphizQxgt is publicly auditable if you want to check the rate yourself.

Burn it or sell it?

Burn an asset when its only remaining value is the rent underneath it. If a token still has a market, swapping it returns the rent and the sale proceeds — strictly better.

And if you are burning something you paid real money for that has since gone to zero with no liquidity to sell into, the Tax Loss Harvester sells illiquid tokens and NFTs for 1 lamport each, creating a disposal where no market exists. Whether that helps depends entirely on your jurisdiction and circumstances, so speak to a tax professional — nothing here is tax advice.

Start with the part that cannot go wrong

Before burning anything, close your empty accounts. It destroys nothing, it is the default mode, and it is almost always more SOL than people expect.

Sol Incinerator

Sol Incinerator

Connect your wallet and see how much SOL is locked in dead tokens and empty accounts.

Try it now

Related Reading

Frequently Asked Questions

What is a sol burner?

A sol burner is a tool that permanently destroys unwanted Solana tokens and NFTs and closes the accounts holding them, returning the rent deposit locked inside. You get about 0.002 SOL back per token account and roughly 0.01 SOL per standard NFT burned.

How much SOL does a sol burner give you back?

About 0.002 SOL per token account closed, out of the 0.00204 SOL rent deposit each account holds. Standard NFTs return roughly 0.01 SOL because they hold rent across several accounts. Compressed NFTs return nothing, since they have no accounts and no deposit.

Is burning tokens on Solana reversible?

No. Burning calls the SPL Token program's burn instruction, which permanently reduces the token supply on-chain and cannot be undone. No tool, developer, or support team can restore a burned asset, and there is no admin override, so confirm a token is genuinely worthless before you destroy it.

What should a good sol burner support?

Look for Token-2022 as well as classic SPL, programmable NFTs, editions, compressed NFTs, LP tokens, and domains. Assets a tool cannot process never appear in its list, so a narrow burner makes your wallet look clean while leaving rent locked.

Do you need to burn a token to get its rent back?

Only if the account still holds a balance, since Solana refuses to close a non-empty account. If the account is already empty because you sold or transferred the token, it can be closed directly with no burn and no risk to anything you own.