Smart Dust Cleanup
Smart Dust Cleanup
Purge identifies and processes dust tokens using a dual-path strategy: Swap or Burn.
Swap Path
If a token has active liquidity on Solana DEXs, it is routed through the Jupiter Aggregator, which provides the best available price for swaps.
How it works:
Purge queries token liquidity using Jupiter’s quote API
Finds the optimal route across supported DEXs (Orca, Raydium, Meteora, etc.)
Constructs a
TransactionInstruction
to swap tokens into SOLYou sign and approve the swap
This approach ensures that even low-value tokens with minimal volume are converted into usable SOL wherever possible.
Burn Path
If a token has no liquidity (zero volume, broken project, or scam token), Purge sends it to a public, non-recoverable burn address:
Why burn?
Prevents future spam
Clears wallet clutter
Ensures tokens are irreversibly removed without trace
You will see a transaction preview showing what will be swapped and what will be burned before approval.
Fee Structure
There is no service fee. You only pay the standard Solana transaction fees — typically fractions of a cent.
Smart Dust Cleanup is the foundation of Purge — converting trash into usable assets in a fully non-custodial way.
Last updated