[Feature] Add smart tip fee functionality

1. Add smart_buy_tip_fee field to PriorityFee struct
2. Extend copy_buy_with_tip method with custom_buy_tip_fee parameter
3. Implement dynamic tip fee adjustment logic
This commit is contained in:
ysq
2025-06-19 22:30:04 +08:00
parent 3d987987b3
commit 29ce9d787f
2 changed files with 10 additions and 2 deletions
+2
View File
@@ -79,6 +79,7 @@ pub struct PriorityFee {
pub rpc_unit_price: u64,
pub buy_tip_fee: f64,
pub buy_tip_fees: Vec<f64>,
pub smart_buy_tip_fee: f64,
pub sell_tip_fee: f64,
}
@@ -91,6 +92,7 @@ impl Default for PriorityFee {
rpc_unit_price: DEFAULT_RPC_UNIT_PRICE,
buy_tip_fee: DEFAULT_BUY_TIP_FEE,
buy_tip_fees: vec![],
smart_buy_tip_fee: 0.0,
sell_tip_fee: DEFAULT_SELL_TIP_FEE
}
}