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§
Source§impl InitializePoolWithAdaptiveFeeBuilder
impl InitializePoolWithAdaptiveFeeBuilder
pub fn new() -> Self
pub fn whirlpools_config(&mut self, whirlpools_config: Pubkey) -> &mut Self
pub fn token_mint_a(&mut self, token_mint_a: Pubkey) -> &mut Self
pub fn token_mint_b(&mut self, token_mint_b: Pubkey) -> &mut Self
pub fn token_badge_a(&mut self, token_badge_a: Pubkey) -> &mut Self
pub fn token_badge_b(&mut self, token_badge_b: Pubkey) -> &mut Self
pub fn funder(&mut self, funder: Pubkey) -> &mut Self
pub fn whirlpool(&mut self, whirlpool: Pubkey) -> &mut Self
pub fn oracle(&mut self, oracle: Pubkey) -> &mut Self
pub fn token_vault_a(&mut self, token_vault_a: Pubkey) -> &mut Self
pub fn token_vault_b(&mut self, token_vault_b: Pubkey) -> &mut Self
pub fn adaptive_fee_tier(&mut self, adaptive_fee_tier: Pubkey) -> &mut Self
pub fn token_program_a(&mut self, token_program_a: Pubkey) -> &mut Self
pub fn token_program_b(&mut self, token_program_b: Pubkey) -> &mut Self
Sourcepub fn system_program(&mut self, system_program: Pubkey) -> &mut Self
pub fn system_program(&mut self, system_program: Pubkey) -> &mut Self
[optional account, default to '11111111111111111111111111111111']
Sourcepub fn rent(&mut self, rent: Pubkey) -> &mut Self
pub fn rent(&mut self, rent: Pubkey) -> &mut Self
[optional account, default to 'SysvarRent111111111111111111111111111111111']
pub fn initial_sqrt_price(&mut self, initial_sqrt_price: u128) -> &mut Self
Sourcepub fn trade_enable_timestamp(
&mut self,
trade_enable_timestamp: u64,
) -> &mut Self
pub fn trade_enable_timestamp( &mut self, trade_enable_timestamp: u64, ) -> &mut Self
[optional argument]
Sourcepub fn add_remaining_account(&mut self, account: AccountMeta) -> &mut Self
pub fn add_remaining_account(&mut self, account: AccountMeta) -> &mut Self
Add an additional account to the instruction.
Sourcepub fn add_remaining_accounts(&mut self, accounts: &[AccountMeta]) -> &mut Self
pub fn add_remaining_accounts(&mut self, accounts: &[AccountMeta]) -> &mut Self
Add additional accounts to the instruction.
pub fn instruction(&self) -> Instruction
Trait Implementations§
Source§impl Clone for InitializePoolWithAdaptiveFeeBuilder
impl Clone for InitializePoolWithAdaptiveFeeBuilder
Source§fn clone(&self) -> InitializePoolWithAdaptiveFeeBuilder
fn clone(&self) -> InitializePoolWithAdaptiveFeeBuilder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for InitializePoolWithAdaptiveFeeBuilder
impl Default for InitializePoolWithAdaptiveFeeBuilder
Source§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 UnsafeUnpin for InitializePoolWithAdaptiveFeeBuilder
impl UnwindSafe for InitializePoolWithAdaptiveFeeBuilder
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