Files
sol-trade-sdk/src/constants/mod.rs
T

16 lines
458 B
Rust
Raw Normal View History

pub mod pumpfun;
pub mod pumpswap;
2025-06-16 18:30:54 +08:00
pub mod raydium;
pub mod trade_type {
pub const COPY_BUY: &'static str = "copy_buy";
pub const COPY_SELL: &'static str = "copy_sell";
pub const SNIPER_BUY: &'static str = "sniper_buy";
pub const SNIPER_SELL: &'static str = "sniper_sell";
}
pub mod trade_platform {
pub const PUMPFUN: &'static str = "pumpfun";
pub const PUMPFUN_SWAP: &'static str = "pumpswap";
pub const RAYDIUM: &'static str = "raydium";
}