2025-06-06 22:13:19 +08:00
|
|
|
pub mod pumpfun;
|
2025-06-10 19:39:06 +08:00
|
|
|
pub mod pumpswap;
|
2025-06-16 18:30:54 +08:00
|
|
|
pub mod raydium;
|
2025-06-10 19:39:06 +08:00
|
|
|
|
|
|
|
|
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";
|
|
|
|
|
}
|