pub struct ArbitrageExecutor {
pub jupiter_client: Arc<JupiterClient>,
pub solana_client: Arc<SolanaClient>,
pub config: Arc<Config>,
pub flash_loan_address_lookup_table: Pubkey,
}
Fields§
§jupiter_client: Arc<JupiterClient>
§solana_client: Arc<SolanaClient>
§config: Arc<Config>
§flash_loan_address_lookup_table: Pubkey
Implementations§
source§impl ArbitrageExecutor
impl ArbitrageExecutor
pub fn new( jupiter_client: Arc<JupiterClient>, solana_client: Arc<SolanaClient>, config: Arc<Config>, flash_loan_address_lookup_table: Pubkey, ) -> Self
pub async fn execute_arbitrage( &self, opportunity: ArbitrageOpportunity, ) -> Result<ArbitrageResult>
async fn ensure_token_account(&self, mint: &Pubkey) -> Result<Pubkey>
Auto Trait Implementations§
impl Freeze for ArbitrageExecutor
impl !RefUnwindSafe for ArbitrageExecutor
impl Send for ArbitrageExecutor
impl Sync for ArbitrageExecutor
impl Unpin for ArbitrageExecutor
impl !UnwindSafe for ArbitrageExecutor
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