pub struct InitializeCycloneWithLiquidityCpiAccounts<'a, 'b> {Show 15 fields
pub metadata_program: &'b AccountInfo<'a>,
pub vortex_config: &'b AccountInfo<'a>,
pub token_mint_a: &'b AccountInfo<'a>,
pub token_mint_b: &'b AccountInfo<'a>,
pub metadata: &'b AccountInfo<'a>,
pub collect_lp_fees_authority: &'b AccountInfo<'a>,
pub funder: &'b AccountInfo<'a>,
pub cyclone: &'b AccountInfo<'a>,
pub token_vault_a: &'b AccountInfo<'a>,
pub token_vault_b: &'b AccountInfo<'a>,
pub associated_token_program: &'b AccountInfo<'a>,
pub cyclone_fee_tier: &'b AccountInfo<'a>,
pub token_program: &'b AccountInfo<'a>,
pub system_program: &'b AccountInfo<'a>,
pub rent: &'b AccountInfo<'a>,
}Expand description
initialize_cyclone_with_liquidity CPI accounts.
Fields§
§metadata_program: &'b AccountInfo<'a>§vortex_config: &'b AccountInfo<'a>§token_mint_a: &'b AccountInfo<'a>§token_mint_b: &'b AccountInfo<'a>§metadata: &'b AccountInfo<'a>CHECK : this is safe because we dont read or write from this account
funder: &'b AccountInfo<'a>§cyclone: &'b AccountInfo<'a>§token_vault_a: &'b AccountInfo<'a>§token_vault_b: &'b AccountInfo<'a>§associated_token_program: &'b AccountInfo<'a>§cyclone_fee_tier: &'b AccountInfo<'a>§token_program: &'b AccountInfo<'a>§system_program: &'b AccountInfo<'a>§rent: &'b AccountInfo<'a>Auto Trait Implementations§
impl<'a, 'b> Freeze for InitializeCycloneWithLiquidityCpiAccounts<'a, 'b>
impl<'a, 'b> !RefUnwindSafe for InitializeCycloneWithLiquidityCpiAccounts<'a, 'b>
impl<'a, 'b> !Send for InitializeCycloneWithLiquidityCpiAccounts<'a, 'b>
impl<'a, 'b> !Sync for InitializeCycloneWithLiquidityCpiAccounts<'a, 'b>
impl<'a, 'b> Unpin for InitializeCycloneWithLiquidityCpiAccounts<'a, 'b>
impl<'a, 'b> !UnwindSafe for InitializeCycloneWithLiquidityCpiAccounts<'a, 'b>
Blanket Implementations§
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> 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