Add a selling method based on quantity

This commit is contained in:
wei
2025-06-07 23:16:46 +08:00
parent 94c2a22ab7
commit b333811483
7 changed files with 318 additions and 17 deletions
+8
View File
@@ -172,3 +172,11 @@ pub struct Symbol;
impl Symbol {
pub const SOLANA: &'static str = "solana";
}
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";
}