Use cases
Branded payment tokens
Launch your own stablecoin for in-app payments and rewards while maintaining USDC liquidity
Loyalty and rewards
Issue branded tokens as rewards that users can seamlessly convert to USDC
Gaming economies
Create in-game currencies backed by USDC with instant redemption
DeFi protocols
Integrate custom stablecoins into DeFi applications with guaranteed USDC liquidity
Key features
- 1:1 USDC backing: Fully backed by USDC reserves on Coinbase
- Instant swaps: Single-transaction settlement on Solana
- Predictable pricing: Fixed 1:1 ratio with no slippage surprises
- Flexible integration: API or Cross-Program Invocation (CPI) from Solana programs
- Multi-decimal support: Automatic normalization for 6-9 decimal tokens
Onchain liquidity
Stableswapper is the onchain liquidity program that powers instant swaps between USDC and any Custom Stablecoin issued through the program. Built on Solana, it provides the settlement layer partners need to let their users move freely between custom tokens and USDC. Learn how to integrate swaps into your application.How it works
The Stableswapper program maintains a liquidity pool with separate vaults for each supported token.Validation
The program checks the whitelist (if enabled), validates slippage protection, and applies any configured fee
Concepts
| Concept | Description |
|---|---|
| PDA (Program Derived Address) | Deterministic on-chain account owned by the program — used for the pool, vaults, and whitelist |
| Vault | A PDA that acts as the logical owner for a token’s reserves within the pool |
| Vault Token Account | The SPL token account that actually holds the token reserves for a given vault |
| ATA (Associated Token Account) | A user’s standard token account for a given mint, derived deterministically from their wallet |
| Whitelist | An optional on-chain list of authorized wallet addresses. When enabled, only listed addresses can execute swaps |
| Slippage | The minimum acceptable output amount (min_amount_out). Protects against fee changes between transaction construction and execution |