Token burning is an operation that permanently removes token units from a token account according to the rules of the relevant Token Program.
Burning is different from transferring tokens, closing a token account, or hiding an asset in a wallet interface.
This section explains what burning does, when it may be appropriate, and why users should review burn transactions carefully before signing them.
- Burning reduces a token balance and may reduce the token's total supply.
- Burning and closing are separate token-program actions.
- Burned tokens should be treated as permanently destroyed.
- Burning a balance to zero does not necessarily close the token account.
- An empty token account may require a separate close instruction.
- Hiding an asset in a wallet interface does not burn it.
What does burning a token mean?
A burn instruction reduces the number of token units held by a token account.
Under the relevant token-program rules, the burned units are removed from circulation and are no longer controlled by the wallet that previously held them.
Depending on the token-program model and the token's configuration, burning may also reduce the token mint's recorded supply.
Burning vs transferring
A transfer moves token units from one token account to another.
A burn removes token units from the token account instead of sending them to another holder.
| Action | Result |
|---|---|
| Transfer | Moves tokens to another token account |
| Burn | Permanently removes token units |
| Close | Removes an eligible token account and transfers its lamports |
| Hide | Changes the wallet interface without changing the blockchain balance |
These actions should never be treated as interchangeable.
Burning vs closing
Burning affects the token balance.
Closing affects the token account that stores the balance.
For example, an account may contain unwanted tokens. Burning those tokens can reduce the token balance to zero, but the token account may continue to exist afterward.
If the account is eligible for closure, closing it is a separate operation that transfers its remaining lamports to a destination account.
Closing an account does not automatically burn tokens, and burning tokens does not automatically close the account.
Can burned tokens be recovered?
Users should treat burning as irreversible.
After approving a burn transaction, the destroyed token units generally cannot be restored by reversing the transaction. Before signing, verify:
- the token mint;
- the token amount;
- the wallet and token account;
- the program instructions; and
- any fees shown by the wallet.
Burning unwanted tokens safely
An unfamiliar or unsolicited token should not automatically be burned or interacted with.
Some unwanted assets may contain suspicious metadata, links, or instructions intended to direct users to unsafe websites.
A safer approach is to:
- avoid clicking links in suspicious token metadata;
- avoid signing transactions you do not understand;
- verify the token mint address through a trusted source;
- hide the asset in the wallet interface when you only want to remove visual clutter; and
- use a burn operation only when you intentionally want to destroy the token balance.
Burning and Token-2022
Token-2022 supports optional extensions that can affect token behavior.
Some extensions may impose additional rules around transfers, account state, hooks, or other token operations. A burn transaction should therefore be evaluated according to the token program and mint configuration involved.
Do not assume that every token follows exactly the same behavior as a basic classic SPL token.
Learn more about token burning
The guides in this section explain burn instructions, account closure, unwanted tokens, Token-2022 considerations, and the difference between destructive and non-destructive wallet cleanup actions.