RWA Rewards & Volume Cashback Mechanics
Trading volume doesn’t just benefit creators and automated market makers anymore. On custom stock pairs, traders receive direct cashback rewards denominated in the underlying real-world asset—turning every swap into fractional stock ownership.
The short answer
Volume Cashback is an automated incentive mechanism that returns a percentage of trading fees directly back to the active trader.
When a token is launched with cashback enabled on a Custom Pair (such as a tokenized stock like SPYx or NVDAx), that cashback is paid in the quote asset itself. If you trade a coin paired with SPYx, you accrue SPYx tokens in a dedicated on-chain volume accumulator account. The standard rates are 0.30% (30 bps) while on the bonding curve, and 0.05% (5 bps) after graduation.
How It Works on Solana Under the Hood
Cashback is not a custodial server calculation; it is executed entirely through the underlying protocol instructions:
- The
is_cashback_enabledFlag: Configured on the token’s creation instruction (create_v2). If false, no cashback accounts are created or credited. - The User Volume Accumulator PDA: For each trader wallet, the program derives a program-derived address:
[Buffer.from("user_volume_accumulator"), userPublicKey] - Per-Quote Asset Token Accounts: Because each quote asset has a different mint, the accumulator holds an Associated Token Account (ATA) for each quote currency you trade.
- Fee Redirection on Swaps: Whenever a swap transaction includes the user’s volume accumulator accounts, the protocol transfers the fee share into the accumulator’s ATA rather than sending it to the creator’s wallet.
Lifetime Counters vs Claimable Balances
A common point of confusion comes from inspecting the accumulator account on Solscan:
The account data contains two numerical fields: cashbackEarned and totalCashbackClaimed. These are lifetime aggregate counters, not your live claimable balance!
- Because a single accumulator account tracks activity across multiple different quote mints (SOL, SPYx, NVDAx, USDC), the numerical counter combines non-fungible quantities into a raw aggregate.
- The Real Claimable Amount: The actual balance of the quote asset’s Associated Token Account owned by the accumulator PDA. When you call
claim_cashback_v2, the program transfers whatever balance sits in that specific ATA into your personal wallet.
The Creator Tradeoff: Cashback vs Fee Splits
For coin creators and launch teams, understanding how cashback interacts with creator revenue is essential:
| Feature | Cashback Mode (ON) | Creator Fee Sharing (OFF) |
|---|---|---|
| Primary Beneficiary | Active Volume Traders | Dev, Artists, Team Splits |
| Community Incentive | Encourages rapid round-trip volume & day-trading | Funds sustained development, marketing & art |
| Mutual Exclusivity | The same fee cannot be earned twice. Cashback diverts fees from the creator; if fee split is the primary goal, turn cashback off. | |
How to Claim Your Accrued Cashback
- Connect your Solana wallet to Trenchables or the provider’s interface.
- Navigate to your active positions or the cashback panel. The app queries the underlying ATA balance for each quote asset you have traded.
- Click Claim Cashback. This signs a transaction calling
claim_cashback_v2against the quote mint. - The accumulated stock tokens (e.g. 0.25 SPYx or 1.15 NVDAx) are transferred directly into your personal wallet. You can hold them as tokenized equities or swap them to SOL.
Primary and official sources
Next