Struct benjamin_arbitrage_bot::jupiter_api::JupiterClient
source · pub struct JupiterClient {
client: Client,
max_retries: u32,
rate_limiter: Option<Arc<RateLimiter>>,
solana_client: Option<Arc<SolanaClient>>,
rate_limits: Arc<Mutex<HashMap<String, (Instant, u32)>>>,
current_thread_id: Arc<Mutex<usize>>,
api_key: Option<String>,
}
Fields§
§client: Client
§max_retries: u32
§rate_limiter: Option<Arc<RateLimiter>>
§solana_client: Option<Arc<SolanaClient>>
§rate_limits: Arc<Mutex<HashMap<String, (Instant, u32)>>>
§current_thread_id: Arc<Mutex<usize>>
§api_key: Option<String>
Implementations§
source§impl JupiterClient
impl JupiterClient
pub fn new(max_retries: u32) -> Self
pub fn with_solana_client(self, solana_client: Arc<SolanaClient>) -> Self
pub fn with_rate_limiter(self, rate_limiter: Arc<RateLimiter>) -> Self
pub fn with_api_key(self, api_key: String) -> Self
pub fn set_rate_limit(&self, api_level: u64)
pub fn set_thread_id(&self, thread_id: usize)
fn check_rate_limit(&self, endpoint: &str) -> Result<()>
async fn make_request<T: for<'de> Deserialize<'de>>( &self, url: &str, endpoint_name: &str, ) -> Result<T>
pub async fn get_quote( &self, input_mint: &str, output_mint: &str, amount: u64, slippage_bps: u64, ) -> Result<Quote>
pub async fn get_swap_transaction( &self, quote: &Quote, ) -> Result<SwapTransaction>
pub async fn fetch_trending_tokens(&self) -> Result<Vec<Token>>
pub fn get_usdc_token() -> Token
pub fn get_wsol_token() -> Token
Auto Trait Implementations§
impl Freeze for JupiterClient
impl !RefUnwindSafe for JupiterClient
impl Send for JupiterClient
impl Sync for JupiterClient
impl Unpin for JupiterClient
impl !UnwindSafe for JupiterClient
Blanket Implementations§
source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more