Token-2022 unlocks powerful programmable behaviors. Learn what each extension does, how traders perceive them, and when you should actually use them.
Standard SPL tokens are simple: fixed supply (after revocation), transferable, no special behaviors. Token-2022 is the upgraded program that adds optional extensions you can enable at creation time — extensions are permanent and cannot be added or removed later.
| Feature | Standard SPL | Token-2022 |
|---|---|---|
| Transfer fees | No | Yes (configurable) |
| Non-transferable tokens | No | Yes |
| Interest-bearing supply | No | Yes |
| Permanent delegate | No | Yes |
| DexScreener flags fees | N/A | Yes if fee > 3% |
| Trader familiarity | Very high | Medium |
| Recommended for memecoins | Yes | Usually not |
Charges a percentage of every token transfer, collected into a separate account that the fee authority can withdraw. The fee is set in basis points (100 bps = 1%) with an optional maximum cap per transfer.
Good use cases: DeFi protocols that need sustainable revenue, utility tokens with staking rewards, tokens where the fee funds a specific treasury.
Tokens with this extension cannot be transferred between wallets at all. They are permanently bound to the wallet that receives them — which is why they're called "soul-bound tokens."
The token's displayed balance grows over time according to a configured interest rate, without any actual minting. The "interest" is purely a display calculation — the underlying token supply doesn't change, but wallets will show an increasing balance.
Assigns a permanent delegate address that has unlimited transfer and burn rights over every wallet holding the token — including wallets the delegate has never interacted with. This is the most powerful and dangerous extension.
Legitimate use cases: Subscription services (revoke tokens when subscription expires), corporate treasury automation, regulated asset compliance.
| Project Type | Recommended Standard | Reason |
|---|---|---|
| Memecoin / community token | Standard SPL | Maximum trader familiarity, no red flags |
| DeFi protocol token | Token-2022 (Transfer Fee) | Sustainable revenue model |
| Achievement / badge NFT | Token-2022 (Non-Transferable) | Soul-bound is the right primitive |
| Stablecoin / RWA | Token-2022 (multiple) | Compliance and fee collection |
| Gaming currency | Standard SPL | Simplicity and compatibility |