pub struct InitializePoolBuilder { /* private fields */ }
Expand description
Instruction builder for InitializePool
.
§Accounts:
[]
fusion_pools_config[]
token_mint_a[]
token_mint_b[]
token_badge_a[]
token_badge_b[writable, signer]
funder[writable]
fusion_pool[writable, signer]
token_vault_a[writable, signer]
token_vault_b[]
token_program_a[]
token_program_b[optional]
system_program (default to11111111111111111111111111111111
)[optional]
rent (default toSysvarRent111111111111111111111111111111111
)
Implementations§
Source§impl InitializePoolBuilder
impl InitializePoolBuilder
pub fn new() -> Self
pub fn fusion_pools_config(&mut self, fusion_pools_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 fusion_pool(&mut self, fusion_pool: 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 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 fee_rate(&mut self, fee_rate: 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 InitializePoolBuilder
impl Clone for InitializePoolBuilder
Source§fn clone(&self) -> InitializePoolBuilder
fn clone(&self) -> InitializePoolBuilder
Returns a duplicate 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 moreSource§impl Debug for InitializePoolBuilder
impl Debug for InitializePoolBuilder
Source§impl Default for InitializePoolBuilder
impl Default for InitializePoolBuilder
Source§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§
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