pub struct InitializePoolV2Builder { /* private fields */ }Expand description
Instruction builder for InitializePoolV2.
§Accounts:
[]whirlpools_config[]token_mint_a[]token_mint_b[]token_badge_a[]token_badge_b[writable, signer]funder[writable]whirlpool[writable, signer]token_vault_a[writable, signer]token_vault_b[]fee_tier[]token_program_a[]token_program_b[optional]system_program (default to11111111111111111111111111111111)[optional]rent (default toSysvarRent111111111111111111111111111111111)
Implementations§
Source§impl InitializePoolV2Builder
impl InitializePoolV2Builder
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 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 fee_tier(&mut self, 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 tick_spacing(&mut self, tick_spacing: u16) -> &mut Self
pub fn initial_sqrt_price(&mut self, initial_sqrt_price: u128) -> &mut Self
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 InitializePoolV2Builder
impl Clone for InitializePoolV2Builder
Source§fn clone(&self) -> InitializePoolV2Builder
fn clone(&self) -> InitializePoolV2Builder
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 Debug for InitializePoolV2Builder
impl Debug for InitializePoolV2Builder
Source§impl Default for InitializePoolV2Builder
impl Default for InitializePoolV2Builder
Source§fn default() -> InitializePoolV2Builder
fn default() -> InitializePoolV2Builder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InitializePoolV2Builder
impl RefUnwindSafe for InitializePoolV2Builder
impl Send for InitializePoolV2Builder
impl Sync for InitializePoolV2Builder
impl Unpin for InitializePoolV2Builder
impl UnsafeUnpin for InitializePoolV2Builder
impl UnwindSafe for InitializePoolV2Builder
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