Incinerator Fun is the safest and simplest way to burn SPL and LP tokens on Solana. It does not rely on custom contracts — instead, it uses Solana’s official burn instruction.
This guide explains how token burning works, how Incinerator Fun executes it, and why the process is fully trustless.
Burning a token permanently reduces its total supply. On Solana, this means:
Unlike Ethereum, Solana does not use dead wallets — it uses a native burn instruction.
Incinerator Fun builds the burn transaction client-side using the official SPL Token library:
import { createBurnInstruction } from "@solana/spl-token";No custom programs are used — only Solana’s native token program (same as Phantom, Raydium, Orca).
Click REFRESH to scan your wallet for all SPL and LP tokens.
burn(
connection,
wallet,
tokenAccount,
mintAddress,
ownerPublicKey,
amountToBurn
);This prepares the transaction but does nothing until you approve it.
Your wallet prompts for approval. You sign locally — nothing executes without your consent.
Incinerator Fun is simply a UI for executing safe burn instructions.
After burning, check your wallet on Solscan. The transaction will show a BURN instruction.
Incinerator Fun uses the same secure mechanism as Solana wallets and DEXs — no shortcuts, no risk, just clean on-chain burns.
UPDATED: MARCH 2026