Can You Burn Tokens on Base? What Actually Happens
If you have cleaned up a Solana wallet and watched SOL land back in your balance, it is natural to look at your Base wallet and wonder whether the same trick works there. The short answer is that burning works on Base, but the payout does not — and the reason is architectural rather than a gap in the tooling.
Can you burn tokens on Base and get ETH back?
You can burn, but you get nothing back. Base uses Ethereum's account model, where holding an ERC-20 costs no locked deposit. There is no rent to refund, so a Base cleanup tool has nothing to pay you. The burn transaction itself costs gas.
What burning means on Base
Base is an Ethereum Layer 2, and it inherits Ethereum's execution model essentially unchanged. Burning a token there means one of two things:
- Sending it to a dead address such as
0x000000000000000000000000000000000000dEaD, an address nobody holds the key to. The tokens are unreachable forever, though technically they still exist and still count toward supply. - Calling a
burn()function, if the token contract implements one. This genuinely reduces total supply.
Either way, the transaction costs you gas and returns nothing. You end up slightly poorer and with a shorter token list.
Why there is nothing to reclaim
The difference comes down to where a token balance is stored, which is one of the deeper design splits between Solana and the EVM.
On Base (and Ethereum, and every EVM chain), an ERC-20 contract keeps a single internal ledger — effectively a mapping from address to balance. Your holding is a row in that table. Adding a row costs the sender a little extra gas the first time, but you do not put up a deposit, and no ongoing storage is reserved in your name. There is nothing held on your behalf, so there is nothing to give back.
On Solana, every token you hold gets its own separate account on-chain. Accounts must be rent-exempt to persist, which means each one holds a deposit of about 0.00204 SOL. That deposit is refundable, and it returns to the owner when the account is closed.
| Base | Solana | |
|---|---|---|
| Where your balance lives | A row in the token contract | A dedicated account you own |
| Deposit to hold a token | None | ~0.00204 SOL, refundable |
| Reclaimable on cleanup | Nothing | ~0.002 SOL per account |
| What burning achieves | Removes it from your list | Removes it and refunds the deposit |
So Solana's wallet cleaners are not smarter than Base's — they are exploiting a genuine, chain-specific pool of refundable value that simply does not exist on Base. Anyone claiming otherwise about an EVM chain is describing something that cannot work.
Be skeptical of any site offering to "reclaim locked ETH" or "recover gas" on Base. There is no such mechanism. These are typically wallet-drainer front ends that ask you to connect and sign a malicious approval. Legitimate rent recovery is a Solana-specific thing and always involves returning your own deposit.
Does clearing tokens on Base save gas?
No, and this is a common misconception worth killing. Your gas cost is determined by the computation in the transactions you send. It has nothing to do with how many token balances your address happens to hold. An address holding 500 spam tokens pays exactly the same gas to send ETH as an address holding none.
Cleaning up a Base wallet is a purely cosmetic improvement to your own view. That is a legitimate reason to do it — a readable portfolio has real value — but it is not a financial one, and burning to achieve it costs gas rather than earning it.
The sensible way to clean a Base wallet
Since burning costs money and returns nothing, the rational approach on Base is to hide, not burn:
- Most wallets let you hide individual tokens or auto-filter suspected spam.
- Block explorers usually let you mark tokens as spam so they stop cluttering your address view.
- If you want a genuinely clean address for a specific purpose, move the assets you care about to a fresh address and leave the spam behind. It costs one transaction instead of hundreds.
The actual risk from spam tokens is identical on every chain, and it is not the tokens themselves. It is the site they advertise. An unsolicited token whose name is a URL is a phishing lure, and the danger only materializes if you visit it and sign something. Never do that.
If you also hold Solana
Here is where it is worth checking, because the numbers are not trivial. If you have a Solana wallet that has been used for trading, airdrops, or NFT mints, there is very likely a meaningful amount of SOL sitting in accounts you have forgotten about — every token you ever sold left its account open, still holding a ~0.00204 SOL deposit.
At 0.002 SOL returned per closed account, a wallet with a few hundred vacant accounts is holding a meaningful amount. Closing them is non-destructive: the default mode only touches accounts that are already empty, so nothing you hold is at risk. The scan is read-only and needs no signature, so checking your own number costs nothing at all.
Sol Incinerator is Solana-only, and deliberately so — the reason it can pay users is unique to Solana's rent mechanics, and there is no honest way to offer the same on Base.

Sol Incinerator
Got a Solana wallet too? Connect it and see how much reclaimable rent is locked in your empty token accounts.
Related Reading
Frequently Asked Questions
Can you burn tokens on Base?
Yes, but it pays you nothing. Burning on Base means sending tokens to a dead address or calling a burn function, which removes them from your balance. Base uses the Ethereum account model with no storage deposits, so there is no locked value to reclaim.
Is there a Base incinerator that pays you back?
No, and there cannot be one. Tools that pay you for cleanup work only on Solana, where every token account locks a refundable rent deposit of about 0.00204 SOL. Base has no equivalent deposit, so a cleanup tool has nothing to return to you.
Why does burning tokens on Solana pay you but Base does not?
Solana stores each token balance in its own account, and every account must hold a refundable rent-exempt deposit of about 0.00204 SOL to persist on-chain. Base uses Ethereum's model, where balances are just entries in a shared contract mapping, so no per-holder deposit exists and nothing is held to give back.
Does burning tokens on Base save on gas?
No. Your gas costs on Base depend on the computation in the transactions you send, not on how many token balances your address happens to hold. An address holding 500 spam tokens pays the same gas to send ETH as an empty one, so removing them is cosmetic and the burn itself costs gas.
How do you clean up spam tokens on Base?
Most Base wallets and explorers let you hide or mark spam tokens, which is the sensible approach since burning costs gas and returns nothing. Never interact with a site advertised inside an unsolicited token, which is the actual risk they carry.