use crate::swqos::common::{poll_transaction_confirmation, serialize_transaction_and_encode}; 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::LIGHTSPEED_TIP_ACCOUNTS}; #[derive(Clone)] pub struct LightspeedClient { pub endpoint: String, pub auth_token: String, pub rpc_client: Arc, pub http_client: Client, } #[async_trait::async_trait] impl SwqosClientTrait for LightspeedClient { async fn send_transaction(&self, trade_type: TradeType, transaction: &VersionedTransaction, wait_confirmation: bool) -> Result<()> { self.send_transaction(trade_type, transaction, wait_confirmation).await } async fn send_transactions(&self, trade_type: TradeType, transactions: &Vec, wait_confirmation: bool) -> Result<()> { self.send_transactions(trade_type, transactions, wait_confirmation).await } fn get_tip_account(&self) -> Result { let tip_account = *LIGHTSPEED_TIP_ACCOUNTS.choose(&mut rand::rng()).or_else(|| LIGHTSPEED_TIP_ACCOUNTS.first()).unwrap(); Ok(tip_account.to_string()) } fn get_swqos_type(&self) -> SwqosType { SwqosType::Lightspeed } } impl LightspeedClient { pub fn new(rpc_url: String, endpoint: String, auth_token: String) -> Self { // Lightspeed endpoint should already include /lightspeed path // Format: https://.rpc.solanavibestation.com/lightspeed?api_key= let rpc_client = SolanaRpcClient::new(rpc_url); let http_client = Client::builder() // Optimized connection pool settings for high performance .pool_idle_timeout(Duration::from_secs(120)) .pool_max_idle_per_host(256) .tcp_keepalive(Some(Duration::from_secs(60))) .tcp_nodelay(true) // Disable Nagle's algorithm for lower latency .http2_keep_alive_interval(Duration::from_secs(10)) .http2_keep_alive_timeout(Duration::from_secs(5)) .http2_adaptive_window(true) // Enable adaptive flow control .timeout(Duration::from_millis(3000)) .connect_timeout(Duration::from_millis(2000)) .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, wait_confirmation: bool) -> Result<()> { let start_time = Instant::now(); let (content, signature) = serialize_transaction_and_encode(transaction, UiTransactionEncoding::Base64)?; // Lightspeed uses standard Solana JSON-RPC format for sendTransaction let request_body = serde_json::to_string(&json!({ "jsonrpc": "2.0", "id": 1, "method": "sendTransaction", "params": [ content, { "encoding": "base64", "skipPreflight": true, "preflightCommitment": "processed", "maxRetries": 0 } ] }))?; let response_text = self.http_client.post(&self.endpoint) .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!(" [lightspeed] {} submitted: {:?}", trade_type, start_time.elapsed()); } else if let Some(_error) = response_json.get("error") { eprintln!(" [lightspeed] {} submission failed: {:?}", trade_type, _error); } } else { eprintln!(" [lightspeed] {} submission failed: {:?}", trade_type, response_text); } let start_time: Instant = Instant::now(); match poll_transaction_confirmation(&self.rpc_client, signature, wait_confirmation).await { Ok(_) => (), Err(e) => { println!(" signature: {:?}", signature); println!(" [lightspeed] {} confirmation failed: {:?}", trade_type, start_time.elapsed()); return Err(e); }, } if wait_confirmation { println!(" signature: {:?}", signature); println!(" [lightspeed] {} confirmed: {:?}", trade_type, start_time.elapsed()); } Ok(()) } pub async fn send_transactions(&self, trade_type: TradeType, transactions: &Vec, wait_confirmation: bool) -> Result<()> { for transaction in transactions { self.send_transaction(trade_type, transaction, wait_confirmation).await?; } Ok(()) } }