Struct InitializePoolWithAdaptiveFeeBuilder
pub struct InitializePoolWithAdaptiveFeeBuilder { /* private fields */ }
Expand description
Instruction builder for InitializePoolWithAdaptiveFee
.
§Accounts:
[]
whirlpools_config[]
token_mint_a[]
token_mint_b[]
token_badge_a[]
token_badge_b[writable, signer]
funder[signer]
initialize_pool_authority[writable]
whirlpool[writable]
oracle[writable, signer]
token_vault_a[writable, signer]
token_vault_b[]
adaptive_fee_tier[]
token_program_a[]
token_program_b[optional]
system_program (default to11111111111111111111111111111111
)[optional]
rent (default toSysvarRent111111111111111111111111111111111
)
Implementations§
§impl InitializePoolWithAdaptiveFeeBuilder
impl InitializePoolWithAdaptiveFeeBuilder
pub fn new() -> InitializePoolWithAdaptiveFeeBuilder
pub fn whirlpools_config( &mut self, whirlpools_config: Pubkey, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn token_mint_a( &mut self, token_mint_a: Pubkey, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn token_mint_b( &mut self, token_mint_b: Pubkey, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn token_badge_a( &mut self, token_badge_a: Pubkey, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn token_badge_b( &mut self, token_badge_b: Pubkey, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn funder( &mut self, funder: Pubkey, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn whirlpool( &mut self, whirlpool: Pubkey, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn oracle( &mut self, oracle: Pubkey, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn token_vault_a( &mut self, token_vault_a: Pubkey, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn token_vault_b( &mut self, token_vault_b: Pubkey, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn adaptive_fee_tier( &mut self, adaptive_fee_tier: Pubkey, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn token_program_a( &mut self, token_program_a: Pubkey, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn token_program_b( &mut self, token_program_b: Pubkey, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn system_program(
&mut self,
system_program: Pubkey,
) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn system_program( &mut self, system_program: Pubkey, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
[optional account, default to '11111111111111111111111111111111']
pub fn rent(
&mut self,
rent: Pubkey,
) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn rent( &mut self, rent: Pubkey, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
[optional account, default to 'SysvarRent111111111111111111111111111111111']
pub fn initial_sqrt_price( &mut self, initial_sqrt_price: u128, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn trade_enable_timestamp(
&mut self,
trade_enable_timestamp: u64,
) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn trade_enable_timestamp( &mut self, trade_enable_timestamp: u64, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
[optional argument]
pub fn add_remaining_account(
&mut self,
account: AccountMeta,
) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn add_remaining_account( &mut self, account: AccountMeta, ) -> &mut InitializePoolWithAdaptiveFeeBuilder
Add an additional account to the instruction.
pub fn add_remaining_accounts(
&mut self,
accounts: &[AccountMeta],
) -> &mut InitializePoolWithAdaptiveFeeBuilder
pub fn add_remaining_accounts( &mut self, accounts: &[AccountMeta], ) -> &mut InitializePoolWithAdaptiveFeeBuilder
Add additional accounts to the instruction.
pub fn instruction(&self) -> Instruction
Trait Implementations§
§impl Clone for InitializePoolWithAdaptiveFeeBuilder
impl Clone for InitializePoolWithAdaptiveFeeBuilder
§fn clone(&self) -> InitializePoolWithAdaptiveFeeBuilder
fn clone(&self) -> InitializePoolWithAdaptiveFeeBuilder
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Default for InitializePoolWithAdaptiveFeeBuilder
impl Default for InitializePoolWithAdaptiveFeeBuilder
§fn default() -> InitializePoolWithAdaptiveFeeBuilder
fn default() -> InitializePoolWithAdaptiveFeeBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InitializePoolWithAdaptiveFeeBuilder
impl RefUnwindSafe for InitializePoolWithAdaptiveFeeBuilder
impl Send for InitializePoolWithAdaptiveFeeBuilder
impl Sync for InitializePoolWithAdaptiveFeeBuilder
impl Unpin for InitializePoolWithAdaptiveFeeBuilder
impl UnwindSafe for InitializePoolWithAdaptiveFeeBuilder
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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