use crate::swqos::common::{poll_transaction_confirmation, serialize_transaction_and_encode, FormatBase64VersionedTransaction}; use rand::seq::IndexedRandom; use reqwest::Client; use serde_json::json; use std::{sync::Arc, time::Instant}; use std::time::Duration; use solana_transaction_status::UiTransactionEncoding; use anyhow::Result; use solana_sdk::transaction::VersionedTransaction; use crate::swqos::{SwqosType, TradeType}; use crate::swqos::SwqosClientTrait; use crate::{common::SolanaRpcClient, constants::swqos::JITO_TIP_ACCOUNTS}; pub struct JitoClient { pub endpoint: String, pub auth_token: String, pub rpc_client: Arc, pub http_client: Client, } #[async_trait::async_trait] impl SwqosClientTrait for JitoClient { async fn send_transaction(&self, trade_type: TradeType, transaction: &VersionedTransaction) -> Result<()> { self.send_transaction(trade_type, transaction).await } async fn send_transactions(&self, trade_type: TradeType, transactions: &Vec) -> Result<()> { self.send_transactions(trade_type, transactions).await } fn get_tip_account(&self) -> Result { if let Some(acc) = JITO_TIP_ACCOUNTS.choose(&mut rand::rng()) { Ok(acc.to_string()) } else { Err(anyhow::anyhow!("no valid tip accounts found")) } } fn get_swqos_type(&self) -> SwqosType { SwqosType::Jito } } impl JitoClient { pub fn new(rpc_url: String, endpoint: String, auth_token: String) -> Self { let rpc_client = SolanaRpcClient::new(rpc_url); let http_client = Client::builder() .pool_idle_timeout(Duration::from_secs(60)) .pool_max_idle_per_host(64) .tcp_keepalive(Some(Duration::from_secs(1200))) .http2_keep_alive_interval(Duration::from_secs(15)) .timeout(Duration::from_secs(10)) .connect_timeout(Duration::from_secs(5)) .build() .unwrap(); Self { rpc_client: Arc::new(rpc_client), endpoint, auth_token, http_client } } pub async fn send_transaction(&self, trade_type: TradeType, transaction: &VersionedTransaction) -> Result<()> { let start_time = Instant::now(); let (content, signature) = serialize_transaction_and_encode(transaction, UiTransactionEncoding::Base64).await?; println!(" 交易编码base64: {:?}", start_time.elapsed()); let request_body = serde_json::to_string(&json!({ "id": 1, "jsonrpc": "2.0", "method": "sendTransaction", "params": [ content, { "encoding": "base64" } ] }))?; let endpoint = if self.auth_token.is_empty() { format!("{}/api/v1/transactions", self.endpoint) } else { format!("{}/api/v1/transactions?uuid={}", self.endpoint, self.auth_token) }; let response = if self.auth_token.is_empty() { self.http_client.post(&endpoint) } else { self.http_client.post(&endpoint) .header("x-jito-auth", &self.auth_token) }; let response_text = response .body(request_body) .header("Content-Type", "application/json") .send() .await? .text() .await?; if let Ok(response_json) = serde_json::from_str::(&response_text) { if response_json.get("result").is_some() { println!(" jito{}提交: {:?}", trade_type, start_time.elapsed()); } else if let Some(_error) = response_json.get("error") { eprintln!(" jito{}提交失败: {:?}", trade_type, _error); } } let start_time: Instant = Instant::now(); match poll_transaction_confirmation(&self.rpc_client, signature).await { Ok(_) => (), Err(e) => { println!(" jito{}确认失败: {:?}", trade_type, start_time.elapsed()); return Err(e); }, } println!(" jito{}确认: {:?}", trade_type, start_time.elapsed()); Ok(()) } pub async fn send_transactions(&self, trade_type: TradeType, transactions: &Vec) -> Result<()> { let start_time = Instant::now(); let txs_base64 = transactions.iter().map(|tx| tx.to_base64_string()).collect::>(); let body = serde_json::json!({ "jsonrpc": "2.0", "method": "sendBundle", "params": [ txs_base64, { "encoding": "base64" } ], "id": 1, }); let endpoint = if self.auth_token.is_empty() { format!("{}/api/v1/bundles", self.endpoint) } else { format!("{}/api/v1/bundles?uuid={}", self.endpoint, self.auth_token) }; let response = if self.auth_token.is_empty() { self.http_client.post(&endpoint) } else { self.http_client.post(&endpoint) .header("x-jito-auth", &self.auth_token) }; let response_text = response .body(body.to_string()) .header("Content-Type", "application/json") .send() .await? .text() .await?; if let Ok(response_json) = serde_json::from_str::(&response_text) { if response_json.get("result").is_some() { println!(" jito{}提交: {:?}", trade_type, start_time.elapsed()); } else if let Some(_error) = response_json.get("error") { eprintln!(" jito{}提交失败: {:?}", trade_type, _error); } } Ok(()) } }