- Bump version to 3.5.4; update README and README_CN - Astralane: irisb binary API (no Base64), POST /irisb with query api-key&method; constants use /irisb endpoints; ping POST getHealth - BlockRazor: Send Transaction v2 (plain Base64 body, Content-Type text/plain, auth in URI only); ping POST /v2/health; use default_http_client_builder - SWQOS: all clients use default_http_client_builder (nextblock, temporal, zeroslot, astralane, lightspeed, jito, flashblock); remove unused Duration imports Made-with: Cursor
110 lines
4.2 KiB
Rust
Executable File
110 lines
4.2 KiB
Rust
Executable File
use crate::swqos::common::{default_http_client_builder, 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 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::NEXTBLOCK_TIP_ACCOUNTS};
|
|
|
|
#[derive(Clone)]
|
|
pub struct NextBlockClient {
|
|
pub endpoint: String,
|
|
pub auth_token: String,
|
|
pub rpc_client: Arc<SolanaRpcClient>,
|
|
pub http_client: Client,
|
|
}
|
|
|
|
#[async_trait::async_trait]
|
|
impl SwqosClientTrait for NextBlockClient {
|
|
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<VersionedTransaction>, wait_confirmation: bool) -> Result<()> {
|
|
self.send_transactions(trade_type, transactions, wait_confirmation).await
|
|
}
|
|
|
|
fn get_tip_account(&self) -> Result<String> {
|
|
let tip_account = *NEXTBLOCK_TIP_ACCOUNTS.choose(&mut rand::rng()).or_else(|| NEXTBLOCK_TIP_ACCOUNTS.first()).unwrap();
|
|
Ok(tip_account.to_string())
|
|
}
|
|
|
|
fn get_swqos_type(&self) -> SwqosType {
|
|
SwqosType::NextBlock
|
|
}
|
|
}
|
|
|
|
impl NextBlockClient {
|
|
pub fn new(rpc_url: String, endpoint: String, auth_token: String) -> Self {
|
|
// Ensure endpoint ends with /api/v2/submit
|
|
let endpoint = if endpoint.ends_with("/api/v2/submit") {
|
|
endpoint
|
|
} else {
|
|
format!("{}/api/v2/submit", endpoint.trim_end_matches('/'))
|
|
};
|
|
let rpc_client = SolanaRpcClient::new(rpc_url);
|
|
let http_client = default_http_client_builder().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)?;
|
|
|
|
let request_body = serde_json::to_string(&json!({
|
|
"transaction": {
|
|
"content": content
|
|
},
|
|
"frontRunningProtection": false
|
|
}))?;
|
|
|
|
let response_text = self.http_client.post(&self.endpoint)
|
|
.body(request_body)
|
|
.header("Authorization", &self.auth_token)
|
|
.header("Content-Type", "application/json")
|
|
.send()
|
|
.await?
|
|
.text()
|
|
.await?;
|
|
|
|
if let Ok(response_json) = serde_json::from_str::<serde_json::Value>(&response_text) {
|
|
if response_json.get("result").is_some() {
|
|
println!(" [nextblock] {} submitted: {:?}", trade_type, start_time.elapsed());
|
|
} else if let Some(_error) = response_json.get("error") {
|
|
eprintln!(" [nextblock] {} submission failed: {:?}", trade_type, _error);
|
|
}
|
|
} else {
|
|
eprintln!(" [nextblock] {} 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!(" [nextblock] {} confirmation failed: {:?}", trade_type, start_time.elapsed());
|
|
return Err(e);
|
|
},
|
|
}
|
|
if wait_confirmation {
|
|
println!(" signature: {:?}", signature);
|
|
println!(" [nextblock] {} confirmed: {:?}", trade_type, start_time.elapsed());
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub async fn send_transactions(&self, trade_type: TradeType, transactions: &Vec<VersionedTransaction>, wait_confirmation: bool) -> Result<()> {
|
|
for transaction in transactions {
|
|
self.send_transaction(trade_type, transaction, wait_confirmation).await?;
|
|
}
|
|
Ok(())
|
|
}
|
|
} |