Documentation Index
Fetch the complete documentation index at: https://docs.raydium.io/llms.txt
Use this file to discover all available pages before exploring further.
What “burn” means here. Despite the name, the LP tokens / position NFT are locked in a program-owned escrow, not destroyed. The liquidity can never be withdrawn, but fees continue to accrue and can be claimed by whoever holds the Fee Key NFT. The NFT is transferable; whoever owns it owns the fee stream.
What Burn & Earn is
Burn & Earn is a Raydium feature that lets a pool creator (or any LP) make a deposit permanent on-chain while keeping the right to harvest trading fees. A position becomes non-redeemable, but a newly minted Raydium Fee Key NFT represents the ongoing right tocollectFees from that locked position.
Common use cases:
- Launch trust. Projects commit to not rug-pulling by locking the deployer’s LP. Holders can verify on-chain that the liquidity is permanent.
- Fee-bearing collectible. A tradable NFT that generates yield. Sell the NFT; transfer the fee stream.
- Treasury-grade LP. Protocols that want to keep liquidity forever for brand / discovery purposes, while still monetizing the fee side.
Supported pool types
| Program | Burn & Earn support |
|---|---|
| CPMM | Yes |
| CLMM | Full-range only (recommended) |
| AMM v4 (Hybrid) | Not supported |
How the lock works at the program level
- The original LP token (CPMM) or position NFT (CLMM) is transferred into a program-owned PDA owned by the Burn & Earn program.
- A Fee Key NFT is minted to the caller. Its metadata points back to the locked position’s PDA.
- Burn & Earn exposes
collectFees(or the equivalent per-pool-type call) that:- Verifies the signer holds the Fee Key NFT for the given locked position.
- Calls the underlying pool program’s fee-claim instruction via CPI.
- Routes the collected fees to the Fee Key holder’s ATAs.
- There is no corresponding
withdraw— the underlying LP / position never exits the escrow.
collectFees call receives the fees.
UI walk-through
- Create a CPMM pool, or a CLMM pool with a full-range position, as usual.
- Go to Liquidity → Create → Burn & Earn.
- Select the position to lock.
- Verify the position details (NFT address, size, pool) and type the confirmation sentence the UI shows. This is intentionally friction-heavy because the operation is irreversible.
- Click Confirm, lock the liquidity permanently.
- A Fee Key NFT arrives in your wallet. It appears on the Portfolio page under locked positions.
collectFees.
API surface
The pool info endpoint returns aburnPercent field indicating the share of that pool’s liquidity that has been locked via Burn & Earn:
burnPercent is a handy surface for trust-signalling: a token whose LP is 99%+ burned is dramatically less rug-able than one whose LP is 0% burned.
Pitfalls
- Irreversible. The LP side can never be retrieved. Confirm the amount is something you’re willing to never touch again.
- CLMM tight ranges are a trap. Lock only full-range CLMM positions, unless you truly understand that a range-bound locked position stops earning once price exits the band.
- Losing the Fee Key NFT is losing the fees forever. Treat it like a deed. Do not accidentally burn it; do not stake it in a hostile contract.
- Token-2022 mints with transfer fees: Burn & Earn supports them but the transfer-fee haircut applies on every fee claim — budget for it.
- There is no partial lock. If you want 50% locked and 50% movable, split the position into two positions first, then lock only one.
LaunchLab uses Burn & Earn under the hood
Tokens graduated from LaunchLab use Burn & Earn for post-migration LP. The default split on Raydium’s own LaunchLab: 90% of LP tokens are burned (locked in Burn & Earn) and 10% go to the creator as a Fee Key NFT. Other platforms building on LaunchLab can configure different burn / creator / platform splits. Seeproducts/launchlab/platforms and products/launchlab/creator-fees.
Where to go next
products/cpmm/instructions— CPMM fee-claim mechanics.products/clmm/instructions— CLMM fee-claim mechanics.products/launchlab/creator-fees— creator-side use of Fee Key NFTs.
- Raydium web UI Burn & Earn flow at raydium.io/liquidity.
api-v3.raydium.io/pools/info/listresponse schema.


