pub struct InitializePoolBuilder { /* private fields */ }
Expand description
Instruction builder for InitializePool
.
§Accounts:
[]
whirlpools_config[]
token_mint_a[]
token_mint_b[writable, signer]
funder[writable]
whirlpool[writable, signer]
token_vault_a[writable, signer]
token_vault_b[]
fee_tier[optional]
token_program (default toTokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
)[optional]
system_program (default to11111111111111111111111111111111
)[optional]
rent (default toSysvarRent111111111111111111111111111111111
)
Implementations§
§impl InitializePoolBuilder
impl InitializePoolBuilder
pub fn new() -> InitializePoolBuilder
pub fn whirlpools_config( &mut self, whirlpools_config: Pubkey, ) -> &mut InitializePoolBuilder
pub fn token_mint_a( &mut self, token_mint_a: Pubkey, ) -> &mut InitializePoolBuilder
pub fn token_mint_b( &mut self, token_mint_b: Pubkey, ) -> &mut InitializePoolBuilder
pub fn funder(&mut self, funder: Pubkey) -> &mut InitializePoolBuilder
pub fn whirlpool(&mut self, whirlpool: Pubkey) -> &mut InitializePoolBuilder
pub fn token_vault_a( &mut self, token_vault_a: Pubkey, ) -> &mut InitializePoolBuilder
pub fn token_vault_b( &mut self, token_vault_b: Pubkey, ) -> &mut InitializePoolBuilder
pub fn fee_tier(&mut self, fee_tier: Pubkey) -> &mut InitializePoolBuilder
pub fn token_program(
&mut self,
token_program: Pubkey,
) -> &mut InitializePoolBuilder
pub fn token_program( &mut self, token_program: Pubkey, ) -> &mut InitializePoolBuilder
[optional account, default to 'TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA']
pub fn system_program(
&mut self,
system_program: Pubkey,
) -> &mut InitializePoolBuilder
pub fn system_program( &mut self, system_program: Pubkey, ) -> &mut InitializePoolBuilder
[optional account, default to '11111111111111111111111111111111']
pub fn rent(&mut self, rent: Pubkey) -> &mut InitializePoolBuilder
pub fn rent(&mut self, rent: Pubkey) -> &mut InitializePoolBuilder
[optional account, default to 'SysvarRent111111111111111111111111111111111']
pub fn whirlpool_bump( &mut self, whirlpool_bump: u8, ) -> &mut InitializePoolBuilder
pub fn tick_spacing(&mut self, tick_spacing: u16) -> &mut InitializePoolBuilder
pub fn initial_sqrt_price( &mut self, initial_sqrt_price: u128, ) -> &mut InitializePoolBuilder
pub fn add_remaining_account(
&mut self,
account: AccountMeta,
) -> &mut InitializePoolBuilder
pub fn add_remaining_account( &mut self, account: AccountMeta, ) -> &mut InitializePoolBuilder
Add an additional account to the instruction.
pub fn add_remaining_accounts(
&mut self,
accounts: &[AccountMeta],
) -> &mut InitializePoolBuilder
pub fn add_remaining_accounts( &mut self, accounts: &[AccountMeta], ) -> &mut InitializePoolBuilder
Add additional accounts to the instruction.
pub fn instruction(&self) -> Instruction
Trait Implementations§
§impl Clone for InitializePoolBuilder
impl Clone for InitializePoolBuilder
§fn clone(&self) -> InitializePoolBuilder
fn clone(&self) -> InitializePoolBuilder
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 Debug for InitializePoolBuilder
impl Debug for InitializePoolBuilder
§impl Default for InitializePoolBuilder
impl Default for InitializePoolBuilder
§fn default() -> InitializePoolBuilder
fn default() -> InitializePoolBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InitializePoolBuilder
impl RefUnwindSafe for InitializePoolBuilder
impl Send for InitializePoolBuilder
impl Sync for InitializePoolBuilder
impl Unpin for InitializePoolBuilder
impl UnwindSafe for InitializePoolBuilder
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,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§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