pub struct DefiClient { /* private fields */ }Implementations§
Source§impl DefiClient
impl DefiClient
pub fn new(rpc_url: String) -> DefiClient
pub fn get_staking_pool( &self, token_mint: &str, ) -> Result<Option<StakingPoolInfo>, TribeError>
pub fn get_stake_account( &self, pool_pubkey: &str, user_pubkey: &str, ) -> Result<Option<StakeAccountInfo>, TribeError>
pub fn get_swap_pool( &self, token_a_mint: &str, token_b_mint: &str, ) -> Result<Option<LiquidityPoolInfo>, TribeError>
pub fn get_swap_quote( &self, token_a_mint: &str, token_b_mint: &str, amount_in: u64, is_a_to_b: bool, ) -> Result<Option<SwapQuoteInfo>, TribeError>
pub fn get_treasury( &self, token_mint: &str, ) -> Result<Option<TreasuryInfo>, TribeError>
pub fn get_user_vault( &self, treasury_pubkey: &str, user_pubkey: &str, ) -> Result<Option<UserVaultInfo>, TribeError>
pub fn get_escrow( &self, depositor: &str, beneficiary: &str, ) -> Result<Option<EscrowInfo>, TribeError>
Auto Trait Implementations§
impl Freeze for DefiClient
impl RefUnwindSafe for DefiClient
impl Send for DefiClient
impl Sync for DefiClient
impl Unpin for DefiClient
impl UnsafeUnpin for DefiClient
impl UnwindSafe for DefiClient
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