1B+ transactions on IDX ecosystem
IDX community
Home
Burn Tokens
Supply ManagementTrust

Burn Tokens

Take full control of your token economics - reduce supply, drive scarcity, and implement powerful deflationary mechanics in seconds.

The IDX Burn Tool lets you permanently destroy SPL tokens directly from your connected wallet on Solana. This page explains the full burn flow, strategic reasons to burn, and key safety details before you execute.

10B+

Tokens Burned

0.1 SOL

Service Fee

100%

Non-Custodial

Final

Irreversible Action

01

How Token Burn Works

Easily reduce circulating supply by securely destroying tokens from your connected wallet on the Solana blockchain.

01

Connect

Link your Solana wallet securely.

02

Select

Choose an SPL token balance to burn.

03

Enter Amount

Specify the precise supply to destroy.

04

Execute

Approve the permanent burn transaction.

02

Why Burn Solana Tokens?

Reduce Token Supply

Decrease circulating supply to increase scarcity and potential value per token.

Counteract Inflation

Offset token minting or distribution to maintain stronger token economics.

Demonstrate Commitment

Show investors and your community long-term commitment to project sustainability.

Reward Holders

A reduced supply can strengthen value dynamics for existing token holders.

03

Important Information About Token Burning

Permanent Action

Token burning is irreversible. Once tokens are burned, they cannot be recovered or restored. The tokens are permanently removed from circulation on-chain.

Service Fee

A small service fee of 0.1 SOL is required to process the burn transaction. This covers network-related execution and platform maintenance.

Security

All transactions are executed directly from your connected wallet. IDX never accesses your private keys and never takes custody of your assets.

04

Quick Code Example: Programmatic SPL Token Burn Flow (Overview)

If you also wants to understand the programmatic flow, here is a small example using Solana SPL Token helpers.

import { Connection, PublicKey } from "@solana/web3.js";
import { getAssociatedTokenAddress, burn } from "@solana/spl-token";

// overview only: assumes wallet + payer signer already available
const connection = new Connection("https://api.mainnet-beta.solana.com");
const mint = new PublicKey("YOUR_TOKEN_MINT");
const owner = payer.publicKey;
const tokenAccount = await getAssociatedTokenAddress(mint, owner);

await burn(
  connection,
  payer,          // fee payer + authority signer
  tokenAccount,   // token account to burn from
  mint,           // token mint
  owner,          // owner/authority
  1_000_000       // amount in base units
);
05

Frequently Asked Questions

Is token burning reversible?

No. Burning is permanent and irreversible. Once executed on-chain, the burned tokens cannot be recovered.

Do I keep custody of my wallet during the burn?

Yes. The burn transaction is signed from your connected wallet. You keep full control of your keys and assets.

What fee is required?

A 0.1 SOL service fee applies to process the burn flow, plus normal Solana network fees.

Can I burn any SPL token?

Burn SPL tokens from your wallet. You must hold the tokens in your wallet.

Ready to burn tokens safely?

Execute a secure, permanent token burn from your wallet in seconds and strengthen your tokenomics with transparent on-chain action.

Open Burn Tool →