feat(swqos): add minimum tip constants and conditional transaction building

- Define minimum tip constants for each SWQOS provider (JITO, NextBlock, Node1, etc.)
- Add dynamic filtering in execute_parallel to skip transaction building when tip is below provider's minimum
- Add missing SWQOS_ENDPOINTS_ASTRALANE constant
- Ensure SWQOS clients are always initialized but transactions are conditionally built based on current tip amount
This commit is contained in:
Wood
2025-11-24 06:03:31 +08:00
parent 3132981f85
commit 5358d9ea28
3 changed files with 43 additions and 15 deletions
+1 -15
View File
@@ -46,24 +46,10 @@ pub async fn build_transaction(
// Add tip transfer instruction
if with_tip && tip_amount > 0.0 {
// 🔧 Node1 最小小费金额限制:0.002 SOL(仅限 Node1
const MIN_TIP_AMOUNT: f64 = 0.002;
// 检查是否是 Node1 的 tip_account
let is_node1 = NODE1_TIP_ACCOUNTS.iter().any(|&account| account == *tip_account);
let actual_tip_amount = if is_node1 && tip_amount < MIN_TIP_AMOUNT {
// Node1 要求最小 0.002 SOL
MIN_TIP_AMOUNT
} else {
// 其他 swqos 使用原始金额
tip_amount
};
instructions.push(transfer(
&payer.pubkey(),
tip_account,
sol_str_to_lamports(actual_tip_amount.to_string().as_str()).unwrap_or(0),
sol_str_to_lamports(tip_amount.to_string().as_str()).unwrap_or(0),
));
}