SolTokenBurner is the safest and simplest way to burn SPL tokens and LP tokens on Solana. Instead of using a custom smart contract, it relies entirely on Solana’s official burn instruction provided by @solana/spl-token.
This guide explains exactly how burning works on Solana, how SolTokenBurner executes the burn, and why it is fully trustless.
Burning a token means permanently reducing its total supply. On Solana, burning is done by sending a transaction that:
Unlike Ethereum burn mechanisms, Solana does NOT send tokens to a dead wallet. Instead, it uses a native burn instruction that mathematically reduces supply.
SolTokenBurner builds a burn transaction client-side using the official SPL Token library:
import { createBurnInstruction } from "@solana/spl-token";This means the app does not run custom programs (unlike other tools) — it uses Solana's standard token program (the same one used by Phantom, Raydium, Orca, and all wallets).
When you click REFRESH, the app scans your wallet for all SPL & LP token accounts using public RPC calls.
When you click “Burn” or “Burn All”, the app constructs a burn instruction:
burn(
connection,
wallet, // your Phantom wallet signs
tokenAccount, // your SPL token account
mintAddress, // token mint
ownerPublicKey,
amountToBurn // user-chosen amount
);This creates a transaction but does not execute anything until you confirm it.
Phantom pops up and asks for approval. You sign the burn transaction locally on your device.
When the transaction is sent, the official token program:
SolTokenBurner is only a front-end to perform the burn instruction you approve.
After burning, open Solscan → paste your wallet address → look for a transaction labeled "Burn". This confirms the supply has been reduced permanently.
SolTokenBurner works by giving you a clean UI using Solana’s official burn instruction. Nothing custom, nothing risky — just the same safe burning mechanism used by wallets and DEXes across Solana.
Updated: November 2025
🔗 Related Guides:
How to Burn SPL & LP Tokens on Solana
How to Burn Liquidity Pool Tokens on Solana - LP Burn
How to get Padlock on DexScreener (Tutorial)
Dead Wallet Address on Solana (Explained)
How to Burn Tokens on Phantom
What is Solana's Burn Address
Why SolTokenBurner is the Only & Best Solana Token Burner