๐ Table of Contents
- โจ Features
- ๐ฆ Installation
- ๐ ๏ธ Usage Examples
- ๐ช Supported Trading Platforms
- ๐ก๏ธ MEV Protection Services
- ๐ฐ Price Calculation Utilities
- ๐งฎ Amount Calculation Utilities
- ๐ Project Structure
- ๐ License
- ๐ฌ Contact
- โ ๏ธ Important Notes
โจ Features
- PumpFun Trading: Support for
buyandselloperations - PumpSwap Trading: Support for PumpSwap pool trading operations
- Bonk Trading: Support for Bonk trading operations
- Raydium CPMM Trading: Support for Raydium CPMM (Concentrated Pool Market Maker) trading operations
- Raydium AMM V4 Trading: Support for Raydium AMM V4 (Automated Market Maker) trading operations
- Event Subscription: Subscribe to PumpFun, PumpSwap, Bonk, Raydium CPMM, and Raydium AMM V4 program trading events
- Yellowstone gRPC: Subscribe to program events using Yellowstone gRPC
- ShredStream Support: Subscribe to program events using ShredStream
- Multiple MEV Protection: Support for Jito, Nextblock, ZeroSlot, Temporal, Bloxroute, FlashBlock, BlockRazor, Node1, Astralane and other services
- Concurrent Trading: Send transactions using multiple MEV services simultaneously; the fastest succeeds while others fail
- Unified Trading Interface: Use unified trading protocol enums for trading operations
- Middleware System: Support for custom instruction middleware to modify, add, or remove instructions before transaction execution
๐ฆ Installation
Direct Clone
Clone this project to your project directory:
Add the dependency to your Cargo.toml:
# Add to your Cargo.toml
= { = "./sol-trade-sdk", = "0.6.12" }
Use crates.io
# Add to your Cargo.toml
= "0.6.12"
๐ ๏ธ Usage Examples
๐ Important Parameter Description
๐ฑ open_seed_optimize Parameter
open_seed_optimize is used to specify whether to use seed optimization to reduce transaction CU consumption.
- Purpose: When
open_seed_optimize: true, the SDK uses createAccountWithSeed optimization to create token ata accounts during transactions. - Note: Transactions created with
open_seed_optimizeenabled must be sold through this SDK. Using official methods to sell may fail. - Note: After enabling
open_seed_optimize, you need to use theget_associated_token_address_with_program_id_fast_use_seedmethod to get the token ata address.
๐ฐ create_wsol_ata and close_wsol_ataใ create_mint_ata Parameters
In PumpSwap, Bonk, and Raydium trading, the create_wsol_ata and close_wsol_ataใ create_mint_ata parameters provide fine-grained control over wSOL (Wrapped SOL) account management:
-
create_wsol_ata:
- When
create_wsol_ata: true, the SDK automatically creates and wraps SOL to wSOL before trading - When buying: automatically wraps SOL to wSOL for trading
- When
-
close_wsol_ata:
- When
close_wsol_ata: true, the SDK automatically closes the wSOL account and unwraps to SOL after trading - When selling: automatically unwraps the received wSOL to SOL and reclaims rent
- When
-
create_mint_ata:
- When
create_mint_ata: true, the SDK automatically creates the token ata account before trading
- When
-
Benefits of Separate Parameters:
- Allows independent control of wSOL account creation and closure
- Useful for batch operations where you want to create once and close after multiple transactions
- Provides flexibility for advanced trading strategies
๐ lookup_table_key Parameter
The lookup_table_key parameter is an optional Pubkey that specifies an address lookup table for transaction optimization. You need to use AddressLookupTableCache to manage the cached address lookup table before using it.
- Purpose: Address lookup tables can reduce transaction size and improve execution speed by storing frequently used addresses
- Usage:
- Can be overridden per transaction in
buy()andsell()methods - If not provided, defaults to
None
- Can be overridden per transaction in
- Benefits:
- Reduces transaction size by referencing addresses from lookup tables
- Improves transaction success rate and speed
- Particularly useful for complex transactions with many account references
โก priority_fee Parameter
The priority_fee parameter is an optional PriorityFee that allows you to override the default priority fee settings for individual transactions:
- Purpose: Provides fine-grained control over transaction priority fees on a per-transaction basis
- Usage:
- Can be passed to
buy()andsell()methods to override the global priority fee settings - If not provided, defaults to
Noneand uses the priority fee settings fromTradeConfig - When provided, the
buy_tip_feesarray will be automatically padded to match the number of SWQOS clients
- Can be passed to
- Benefits:
- Allows dynamic adjustment of priority fees based on market conditions
- Enables different fee strategies for different types of transactions
- Provides flexibility for high-frequency trading scenarios
About ShredStream
When using shred to subscribe to events, due to the nature of shreds, you cannot get complete information about transaction events. Please ensure that the parameters your trading logic depends on are available in shreds when using them.
๐ Usage Examples Summary Table
| Feature Type | Package Name | Description | Run Command | Source Code |
|---|---|---|---|---|
| Event Subscription | event_subscription |
Monitor token trading events | cargo run --package event_subscription |
examples/event_subscription |
| Trading Client | trading_client |
Create and configure SolanaTrade instance | cargo run --package trading_client |
examples/trading_client |
| PumpFun Sniping | pumpfun_sniper_trading |
PumpFun token sniping trading | cargo run --package pumpfun_sniper_trading |
examples/pumpfun_sniper_trading |
| PumpFun Copy Trading | pumpfun_copy_trading |
PumpFun token copy trading | cargo run --package pumpfun_copy_trading |
examples/pumpfun_copy_trading |
| PumpSwap | pumpswap_trading |
PumpSwap trading operations | cargo run --package pumpswap_trading |
examples/pumpswap_trading |
| Raydium CPMM | raydium_cpmm_trading |
Raydium CPMM trading operations | cargo run --package raydium_cpmm_trading |
examples/raydium_cpmm_trading |
| Raydium AMM V4 | raydium_amm_v4_trading |
Raydium AMM V4 trading operations | cargo run --package raydium_amm_v4_trading |
examples/raydium_amm_v4_trading |
| Bonk Sniping | bonk_sniper_trading |
Bonk token sniping trading | cargo run --package bonk_sniper_trading |
examples/bonk_sniper_trading |
| Bonk Copy Trading | bonk_copy_trading |
Bonk token copy trading | cargo run --package bonk_copy_trading |
examples/bonk_copy_trading |
| Middleware System | middleware_system |
Custom instruction middleware example | cargo run --package middleware_system |
examples/middleware_system |
| Address Lookup | address_lookup |
Address lookup table example | cargo run --package address_lookup |
examples/address_lookup |
| Nonce | nonce_cache |
Nonce example | cargo run --package nonce_cache |
examples/nonce_cache |
| WSOL Wrapper | wsol_wrapper |
Wrap/unwrap SOL to/from WSOL example | cargo run --package wsol_wrapper |
examples/wsol_wrapper |
| Seed Trading | seed_trading |
Seed trading example | cargo run --package seed_trading |
examples/seed_trading |
โ๏ธ SWQOS Service Configuration
When configuring SWQOS services, note the different parameter requirements for each service:
- Jito: The first parameter is UUID (if no UUID, pass an empty string
"") - Other MEV services: The first parameter is the API Token
Custom URL Support
Each SWQOS service now supports an optional custom URL parameter:
// Using custom URL (third parameter)
let jito_config = Jito;
// Using default regional endpoint (third parameter is None)
let nextblock_config = NextBlock;
URL Priority Logic:
- If a custom URL is provided (
Some(url)), it will be used instead of the regional endpoint - If no custom URL is provided (
None), the system will use the default endpoint for the specifiedSwqosRegion - This allows for maximum flexibility while maintaining backward compatibility
When using multiple MEV services, you need to use Durable Nonce. You need to initialize a NonceCache class (or write your own nonce management class), get the latest nonce value, and use it as the blockhash when trading.
๐ง Middleware System
The SDK provides a powerful middleware system that allows you to modify, add, or remove instructions before transaction execution. Middleware executes in the order they are added:
let middleware_manager = new
.add_middleware // Executes first
.add_middleware // Executes second
.add_middleware; // Executes last
โก Custom Priority Fee Configuration
use PriorityFee;
// Custom priority fee configuration
let priority_fee = PriorityFee ;
// Use custom priority fee in TradeConfig
let trade_config = TradeConfig ;
๐ช Supported Trading Platforms
- PumpFun: Primary meme coin trading platform
- PumpSwap: PumpFun's swap protocol
- Bonk: Token launch platform (letsbonk.fun)
- Raydium CPMM: Raydium's Concentrated Pool Market Maker protocol
- Raydium AMM V4: Raydium's Automated Market Maker V4 protocol
๐ก๏ธ MEV Protection Services
- Jito: High-performance block space
- NextBlock: Fast transaction execution
- ZeroSlot: Zero-latency transactions
- Temporal: Time-sensitive transactions
- Bloxroute: Blockchain network acceleration
- FlashBlock: High-speed transaction execution with API key authentication - Official Documentation
- BlockRazor: High-speed transaction execution with API key authentication - Official Documentation
- Node1: High-speed transaction execution with API key authentication - Official Documentation
- Astralane: Blockchain network acceleration
๐ฐ Price Calculation Utilities
The SDK includes price calculation utilities for all supported protocols in src/utils/price/.
๐งฎ Amount Calculation Utilities
The SDK provides trading amount calculation functionality for various protocols, located in src/utils/calc/:
- Common Calculation Functions: Provides general fee calculation and division utilities
- Protocol-Specific Calculations: Specialized calculation logic for each protocol
- PumpFun: Token buy/sell amount calculations based on bonding curves
- PumpSwap: Amount calculations for multiple trading pairs
- Raydium AMM V4: Amount and fee calculations for automated market maker pools
- Raydium CPMM: Amount calculations for constant product market makers
- Bonk: Specialized calculation logic for Bonk tokens
Key features include:
- Calculate output amounts based on input amounts
- Fee calculation and distribution
- Slippage protection calculations
- Liquidity pool state calculations
๐ Project Structure
src/
โโโ common/ # Common functionality and tools
โโโ constants/ # Constant definitions
โโโ instruction/ # Instruction building
โโโ swqos/ # MEV service clients
โโโ trading/ # Unified trading engine
โ โโโ common/ # Common trading tools
โ โโโ core/ # Core trading engine
โ โโโ middleware/ # Middleware system
โ โ โโโ builtin.rs # Built-in middleware implementations
โ โ โโโ traits.rs # Middleware trait definitions
โ โ โโโ mod.rs # Middleware module
โ โโโ bonk/ # Bonk trading implementation
โ โโโ pumpfun/ # PumpFun trading implementation
โ โโโ pumpswap/ # PumpSwap trading implementation
โ โโโ raydium_cpmm/ # Raydium CPMM trading implementation
โ โโโ raydium_amm_v4/ # Raydium AMM V4 trading implementation
โ โโโ factory.rs # Trading factory
โโโ utils/ # Utility functions
โ โโโ price/ # Price calculation utilities
โ โ โโโ common.rs # Common price functions
โ โ โโโ bonk.rs # Bonk price calculations
โ โ โโโ pumpfun.rs # PumpFun price calculations
โ โ โโโ pumpswap.rs # PumpSwap price calculations
โ โ โโโ raydium_cpmm.rs # Raydium CPMM price calculations
โ โ โโโ raydium_clmm.rs # Raydium CLMM price calculations
โ โ โโโ raydium_amm_v4.rs # Raydium AMM V4 price calculations
โ โโโ calc/ # Amount calculation utilities
โ โโโ common.rs # Common calculation functions
โ โโโ bonk.rs # Bonk amount calculations
โ โโโ pumpfun.rs # PumpFun amount calculations
โ โโโ pumpswap.rs # PumpSwap amount calculations
โ โโโ raydium_cpmm.rs # Raydium CPMM amount calculations
โ โโโ raydium_amm_v4.rs # Raydium AMM V4 amount calculations
โโโ lib.rs # Main library file
โโโ main.rs # Example program
๐ License
MIT License
๐ฌ Contact
- Official Website: https://fnzero.dev/
- Project Repository: https://github.com/0xfnzero/sol-trade-sdk
- Telegram Group: https://t.me/fnzero_group
- Discord: https://discord.gg/vuazbGkqQE
โ ๏ธ Important Notes
- Test thoroughly before using on mainnet
- Properly configure private keys and API tokens
- Pay attention to slippage settings to avoid transaction failures
- Monitor balances and transaction fees
- Comply with relevant laws and regulations