use borsh::BorshDeserialize;
use borsh::BorshSerialize;
#[derive(Debug)]
pub struct Initialize {
pub token_program: solana_pubkey::Pubkey,
pub system_program: solana_pubkey::Pubkey,
pub rent: solana_pubkey::Pubkey,
pub amm: solana_pubkey::Pubkey,
pub amm_authority: solana_pubkey::Pubkey,
pub amm_open_orders: solana_pubkey::Pubkey,
pub lp_mint_address: solana_pubkey::Pubkey,
pub coin_mint_address: solana_pubkey::Pubkey,
pub pc_mint_address: solana_pubkey::Pubkey,
pub pool_coin_token_account: solana_pubkey::Pubkey,
pub pool_pc_token_account: solana_pubkey::Pubkey,
pub pool_withdraw_queue: solana_pubkey::Pubkey,
pub pool_target_orders_account: solana_pubkey::Pubkey,
pub user_lp_token_account: solana_pubkey::Pubkey,
pub pool_temp_lp_token_account: solana_pubkey::Pubkey,
pub serum_program: solana_pubkey::Pubkey,
pub serum_market: solana_pubkey::Pubkey,
pub user_wallet: solana_pubkey::Pubkey,
}
impl Initialize {
pub fn instruction(&self, args: InitializeInstructionArgs) -> solana_instruction::Instruction {
self.instruction_with_remaining_accounts(args, &[])
}
#[allow(clippy::arithmetic_side_effects)]
#[allow(clippy::vec_init_then_push)]
pub fn instruction_with_remaining_accounts(
&self,
args: InitializeInstructionArgs,
remaining_accounts: &[solana_instruction::AccountMeta],
) -> solana_instruction::Instruction {
let mut accounts = Vec::with_capacity(18 + remaining_accounts.len());
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.token_program,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.system_program,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.rent, false,
));
accounts.push(solana_instruction::AccountMeta::new(self.amm, false));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.amm_authority,
false,
));
accounts.push(solana_instruction::AccountMeta::new(
self.amm_open_orders,
false,
));
accounts.push(solana_instruction::AccountMeta::new(
self.lp_mint_address,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.coin_mint_address,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.pc_mint_address,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.pool_coin_token_account,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.pool_pc_token_account,
false,
));
accounts.push(solana_instruction::AccountMeta::new(
self.pool_withdraw_queue,
false,
));
accounts.push(solana_instruction::AccountMeta::new(
self.pool_target_orders_account,
false,
));
accounts.push(solana_instruction::AccountMeta::new(
self.user_lp_token_account,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.pool_temp_lp_token_account,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.serum_program,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.serum_market,
false,
));
accounts.push(solana_instruction::AccountMeta::new(self.user_wallet, true));
accounts.extend_from_slice(remaining_accounts);
let mut data = borsh::to_vec(&InitializeInstructionData::new()).unwrap();
let mut args = borsh::to_vec(&args).unwrap();
data.append(&mut args);
solana_instruction::Instruction {
program_id: crate::RAYDIUM_AMM_ID,
accounts,
data,
}
}
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct InitializeInstructionData {
discriminator: [u8; 8],
}
impl InitializeInstructionData {
pub fn new() -> Self {
Self {
discriminator: [175, 175, 109, 31, 13, 152, 155, 237],
}
}
}
impl Default for InitializeInstructionData {
fn default() -> Self {
Self::new()
}
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct InitializeInstructionArgs {
pub nonce: u8,
pub open_time: u64,
}
#[derive(Clone, Debug, Default)]
pub struct InitializeBuilder {
token_program: Option<solana_pubkey::Pubkey>,
system_program: Option<solana_pubkey::Pubkey>,
rent: Option<solana_pubkey::Pubkey>,
amm: Option<solana_pubkey::Pubkey>,
amm_authority: Option<solana_pubkey::Pubkey>,
amm_open_orders: Option<solana_pubkey::Pubkey>,
lp_mint_address: Option<solana_pubkey::Pubkey>,
coin_mint_address: Option<solana_pubkey::Pubkey>,
pc_mint_address: Option<solana_pubkey::Pubkey>,
pool_coin_token_account: Option<solana_pubkey::Pubkey>,
pool_pc_token_account: Option<solana_pubkey::Pubkey>,
pool_withdraw_queue: Option<solana_pubkey::Pubkey>,
pool_target_orders_account: Option<solana_pubkey::Pubkey>,
user_lp_token_account: Option<solana_pubkey::Pubkey>,
pool_temp_lp_token_account: Option<solana_pubkey::Pubkey>,
serum_program: Option<solana_pubkey::Pubkey>,
serum_market: Option<solana_pubkey::Pubkey>,
user_wallet: Option<solana_pubkey::Pubkey>,
nonce: Option<u8>,
open_time: Option<u64>,
__remaining_accounts: Vec<solana_instruction::AccountMeta>,
}
impl InitializeBuilder {
pub fn new() -> Self {
Self::default()
}
#[inline(always)]
pub fn token_program(&mut self, token_program: solana_pubkey::Pubkey) -> &mut Self {
self.token_program = Some(token_program);
self
}
#[inline(always)]
pub fn system_program(&mut self, system_program: solana_pubkey::Pubkey) -> &mut Self {
self.system_program = Some(system_program);
self
}
#[inline(always)]
pub fn rent(&mut self, rent: solana_pubkey::Pubkey) -> &mut Self {
self.rent = Some(rent);
self
}
#[inline(always)]
pub fn amm(&mut self, amm: solana_pubkey::Pubkey) -> &mut Self {
self.amm = Some(amm);
self
}
#[inline(always)]
pub fn amm_authority(&mut self, amm_authority: solana_pubkey::Pubkey) -> &mut Self {
self.amm_authority = Some(amm_authority);
self
}
#[inline(always)]
pub fn amm_open_orders(&mut self, amm_open_orders: solana_pubkey::Pubkey) -> &mut Self {
self.amm_open_orders = Some(amm_open_orders);
self
}
#[inline(always)]
pub fn lp_mint_address(&mut self, lp_mint_address: solana_pubkey::Pubkey) -> &mut Self {
self.lp_mint_address = Some(lp_mint_address);
self
}
#[inline(always)]
pub fn coin_mint_address(&mut self, coin_mint_address: solana_pubkey::Pubkey) -> &mut Self {
self.coin_mint_address = Some(coin_mint_address);
self
}
#[inline(always)]
pub fn pc_mint_address(&mut self, pc_mint_address: solana_pubkey::Pubkey) -> &mut Self {
self.pc_mint_address = Some(pc_mint_address);
self
}
#[inline(always)]
pub fn pool_coin_token_account(
&mut self,
pool_coin_token_account: solana_pubkey::Pubkey,
) -> &mut Self {
self.pool_coin_token_account = Some(pool_coin_token_account);
self
}
#[inline(always)]
pub fn pool_pc_token_account(
&mut self,
pool_pc_token_account: solana_pubkey::Pubkey,
) -> &mut Self {
self.pool_pc_token_account = Some(pool_pc_token_account);
self
}
#[inline(always)]
pub fn pool_withdraw_queue(&mut self, pool_withdraw_queue: solana_pubkey::Pubkey) -> &mut Self {
self.pool_withdraw_queue = Some(pool_withdraw_queue);
self
}
#[inline(always)]
pub fn pool_target_orders_account(
&mut self,
pool_target_orders_account: solana_pubkey::Pubkey,
) -> &mut Self {
self.pool_target_orders_account = Some(pool_target_orders_account);
self
}
#[inline(always)]
pub fn user_lp_token_account(
&mut self,
user_lp_token_account: solana_pubkey::Pubkey,
) -> &mut Self {
self.user_lp_token_account = Some(user_lp_token_account);
self
}
#[inline(always)]
pub fn pool_temp_lp_token_account(
&mut self,
pool_temp_lp_token_account: solana_pubkey::Pubkey,
) -> &mut Self {
self.pool_temp_lp_token_account = Some(pool_temp_lp_token_account);
self
}
#[inline(always)]
pub fn serum_program(&mut self, serum_program: solana_pubkey::Pubkey) -> &mut Self {
self.serum_program = Some(serum_program);
self
}
#[inline(always)]
pub fn serum_market(&mut self, serum_market: solana_pubkey::Pubkey) -> &mut Self {
self.serum_market = Some(serum_market);
self
}
#[inline(always)]
pub fn user_wallet(&mut self, user_wallet: solana_pubkey::Pubkey) -> &mut Self {
self.user_wallet = Some(user_wallet);
self
}
#[inline(always)]
pub fn nonce(&mut self, nonce: u8) -> &mut Self {
self.nonce = Some(nonce);
self
}
#[inline(always)]
pub fn open_time(&mut self, open_time: u64) -> &mut Self {
self.open_time = Some(open_time);
self
}
#[inline(always)]
pub fn add_remaining_account(&mut self, account: solana_instruction::AccountMeta) -> &mut Self {
self.__remaining_accounts.push(account);
self
}
#[inline(always)]
pub fn add_remaining_accounts(
&mut self,
accounts: &[solana_instruction::AccountMeta],
) -> &mut Self {
self.__remaining_accounts.extend_from_slice(accounts);
self
}
#[allow(clippy::clone_on_copy)]
pub fn instruction(&self) -> solana_instruction::Instruction {
let accounts = Initialize {
token_program: self.token_program.unwrap_or(solana_pubkey::pubkey!(
"TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
)),
system_program: self
.system_program
.unwrap_or(solana_pubkey::pubkey!("11111111111111111111111111111111")),
rent: self.rent.unwrap_or(solana_pubkey::pubkey!(
"SysvarRent111111111111111111111111111111111"
)),
amm: self.amm.expect("amm is not set"),
amm_authority: self.amm_authority.expect("amm_authority is not set"),
amm_open_orders: self.amm_open_orders.expect("amm_open_orders is not set"),
lp_mint_address: self.lp_mint_address.expect("lp_mint_address is not set"),
coin_mint_address: self
.coin_mint_address
.expect("coin_mint_address is not set"),
pc_mint_address: self.pc_mint_address.expect("pc_mint_address is not set"),
pool_coin_token_account: self
.pool_coin_token_account
.expect("pool_coin_token_account is not set"),
pool_pc_token_account: self
.pool_pc_token_account
.expect("pool_pc_token_account is not set"),
pool_withdraw_queue: self
.pool_withdraw_queue
.expect("pool_withdraw_queue is not set"),
pool_target_orders_account: self
.pool_target_orders_account
.expect("pool_target_orders_account is not set"),
user_lp_token_account: self
.user_lp_token_account
.expect("user_lp_token_account is not set"),
pool_temp_lp_token_account: self
.pool_temp_lp_token_account
.expect("pool_temp_lp_token_account is not set"),
serum_program: self.serum_program.expect("serum_program is not set"),
serum_market: self.serum_market.expect("serum_market is not set"),
user_wallet: self.user_wallet.expect("user_wallet is not set"),
};
let args = InitializeInstructionArgs {
nonce: self.nonce.clone().expect("nonce is not set"),
open_time: self.open_time.clone().expect("open_time is not set"),
};
accounts.instruction_with_remaining_accounts(args, &self.__remaining_accounts)
}
}
pub struct InitializeCpiAccounts<'a, 'b> {
pub token_program: &'b solana_account_info::AccountInfo<'a>,
pub system_program: &'b solana_account_info::AccountInfo<'a>,
pub rent: &'b solana_account_info::AccountInfo<'a>,
pub amm: &'b solana_account_info::AccountInfo<'a>,
pub amm_authority: &'b solana_account_info::AccountInfo<'a>,
pub amm_open_orders: &'b solana_account_info::AccountInfo<'a>,
pub lp_mint_address: &'b solana_account_info::AccountInfo<'a>,
pub coin_mint_address: &'b solana_account_info::AccountInfo<'a>,
pub pc_mint_address: &'b solana_account_info::AccountInfo<'a>,
pub pool_coin_token_account: &'b solana_account_info::AccountInfo<'a>,
pub pool_pc_token_account: &'b solana_account_info::AccountInfo<'a>,
pub pool_withdraw_queue: &'b solana_account_info::AccountInfo<'a>,
pub pool_target_orders_account: &'b solana_account_info::AccountInfo<'a>,
pub user_lp_token_account: &'b solana_account_info::AccountInfo<'a>,
pub pool_temp_lp_token_account: &'b solana_account_info::AccountInfo<'a>,
pub serum_program: &'b solana_account_info::AccountInfo<'a>,
pub serum_market: &'b solana_account_info::AccountInfo<'a>,
pub user_wallet: &'b solana_account_info::AccountInfo<'a>,
}
pub struct InitializeCpi<'a, 'b> {
pub __program: &'b solana_account_info::AccountInfo<'a>,
pub token_program: &'b solana_account_info::AccountInfo<'a>,
pub system_program: &'b solana_account_info::AccountInfo<'a>,
pub rent: &'b solana_account_info::AccountInfo<'a>,
pub amm: &'b solana_account_info::AccountInfo<'a>,
pub amm_authority: &'b solana_account_info::AccountInfo<'a>,
pub amm_open_orders: &'b solana_account_info::AccountInfo<'a>,
pub lp_mint_address: &'b solana_account_info::AccountInfo<'a>,
pub coin_mint_address: &'b solana_account_info::AccountInfo<'a>,
pub pc_mint_address: &'b solana_account_info::AccountInfo<'a>,
pub pool_coin_token_account: &'b solana_account_info::AccountInfo<'a>,
pub pool_pc_token_account: &'b solana_account_info::AccountInfo<'a>,
pub pool_withdraw_queue: &'b solana_account_info::AccountInfo<'a>,
pub pool_target_orders_account: &'b solana_account_info::AccountInfo<'a>,
pub user_lp_token_account: &'b solana_account_info::AccountInfo<'a>,
pub pool_temp_lp_token_account: &'b solana_account_info::AccountInfo<'a>,
pub serum_program: &'b solana_account_info::AccountInfo<'a>,
pub serum_market: &'b solana_account_info::AccountInfo<'a>,
pub user_wallet: &'b solana_account_info::AccountInfo<'a>,
pub __args: InitializeInstructionArgs,
}
impl<'a, 'b> InitializeCpi<'a, 'b> {
pub fn new(
program: &'b solana_account_info::AccountInfo<'a>,
accounts: InitializeCpiAccounts<'a, 'b>,
args: InitializeInstructionArgs,
) -> Self {
Self {
__program: program,
token_program: accounts.token_program,
system_program: accounts.system_program,
rent: accounts.rent,
amm: accounts.amm,
amm_authority: accounts.amm_authority,
amm_open_orders: accounts.amm_open_orders,
lp_mint_address: accounts.lp_mint_address,
coin_mint_address: accounts.coin_mint_address,
pc_mint_address: accounts.pc_mint_address,
pool_coin_token_account: accounts.pool_coin_token_account,
pool_pc_token_account: accounts.pool_pc_token_account,
pool_withdraw_queue: accounts.pool_withdraw_queue,
pool_target_orders_account: accounts.pool_target_orders_account,
user_lp_token_account: accounts.user_lp_token_account,
pool_temp_lp_token_account: accounts.pool_temp_lp_token_account,
serum_program: accounts.serum_program,
serum_market: accounts.serum_market,
user_wallet: accounts.user_wallet,
__args: args,
}
}
#[inline(always)]
pub fn invoke(&self) -> solana_program_entrypoint::ProgramResult {
self.invoke_signed_with_remaining_accounts(&[], &[])
}
#[inline(always)]
pub fn invoke_with_remaining_accounts(
&self,
remaining_accounts: &[(&'b solana_account_info::AccountInfo<'a>, bool, bool)],
) -> solana_program_entrypoint::ProgramResult {
self.invoke_signed_with_remaining_accounts(&[], remaining_accounts)
}
#[inline(always)]
pub fn invoke_signed(
&self,
signers_seeds: &[&[&[u8]]],
) -> solana_program_entrypoint::ProgramResult {
self.invoke_signed_with_remaining_accounts(signers_seeds, &[])
}
#[allow(clippy::arithmetic_side_effects)]
#[allow(clippy::clone_on_copy)]
#[allow(clippy::vec_init_then_push)]
pub fn invoke_signed_with_remaining_accounts(
&self,
signers_seeds: &[&[&[u8]]],
remaining_accounts: &[(&'b solana_account_info::AccountInfo<'a>, bool, bool)],
) -> solana_program_entrypoint::ProgramResult {
let mut accounts = Vec::with_capacity(18 + remaining_accounts.len());
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.token_program.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.system_program.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.rent.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new(*self.amm.key, false));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.amm_authority.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new(
*self.amm_open_orders.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new(
*self.lp_mint_address.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.coin_mint_address.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.pc_mint_address.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.pool_coin_token_account.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.pool_pc_token_account.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new(
*self.pool_withdraw_queue.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new(
*self.pool_target_orders_account.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new(
*self.user_lp_token_account.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.pool_temp_lp_token_account.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.serum_program.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.serum_market.key,
false,
));
accounts.push(solana_instruction::AccountMeta::new(
*self.user_wallet.key,
true,
));
remaining_accounts.iter().for_each(|remaining_account| {
accounts.push(solana_instruction::AccountMeta {
pubkey: *remaining_account.0.key,
is_signer: remaining_account.1,
is_writable: remaining_account.2,
})
});
let mut data = borsh::to_vec(&InitializeInstructionData::new()).unwrap();
let mut args = borsh::to_vec(&self.__args).unwrap();
data.append(&mut args);
let instruction = solana_instruction::Instruction {
program_id: crate::RAYDIUM_AMM_ID,
accounts,
data,
};
let mut account_infos = Vec::with_capacity(19 + remaining_accounts.len());
account_infos.push(self.__program.clone());
account_infos.push(self.token_program.clone());
account_infos.push(self.system_program.clone());
account_infos.push(self.rent.clone());
account_infos.push(self.amm.clone());
account_infos.push(self.amm_authority.clone());
account_infos.push(self.amm_open_orders.clone());
account_infos.push(self.lp_mint_address.clone());
account_infos.push(self.coin_mint_address.clone());
account_infos.push(self.pc_mint_address.clone());
account_infos.push(self.pool_coin_token_account.clone());
account_infos.push(self.pool_pc_token_account.clone());
account_infos.push(self.pool_withdraw_queue.clone());
account_infos.push(self.pool_target_orders_account.clone());
account_infos.push(self.user_lp_token_account.clone());
account_infos.push(self.pool_temp_lp_token_account.clone());
account_infos.push(self.serum_program.clone());
account_infos.push(self.serum_market.clone());
account_infos.push(self.user_wallet.clone());
remaining_accounts
.iter()
.for_each(|remaining_account| account_infos.push(remaining_account.0.clone()));
if signers_seeds.is_empty() {
solana_cpi::invoke(&instruction, &account_infos)
} else {
solana_cpi::invoke_signed(&instruction, &account_infos, signers_seeds)
}
}
}
#[derive(Clone, Debug)]
pub struct InitializeCpiBuilder<'a, 'b> {
instruction: Box<InitializeCpiBuilderInstruction<'a, 'b>>,
}
impl<'a, 'b> InitializeCpiBuilder<'a, 'b> {
pub fn new(program: &'b solana_account_info::AccountInfo<'a>) -> Self {
let instruction = Box::new(InitializeCpiBuilderInstruction {
__program: program,
token_program: None,
system_program: None,
rent: None,
amm: None,
amm_authority: None,
amm_open_orders: None,
lp_mint_address: None,
coin_mint_address: None,
pc_mint_address: None,
pool_coin_token_account: None,
pool_pc_token_account: None,
pool_withdraw_queue: None,
pool_target_orders_account: None,
user_lp_token_account: None,
pool_temp_lp_token_account: None,
serum_program: None,
serum_market: None,
user_wallet: None,
nonce: None,
open_time: None,
__remaining_accounts: Vec::new(),
});
Self { instruction }
}
#[inline(always)]
pub fn token_program(
&mut self,
token_program: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.token_program = Some(token_program);
self
}
#[inline(always)]
pub fn system_program(
&mut self,
system_program: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.system_program = Some(system_program);
self
}
#[inline(always)]
pub fn rent(&mut self, rent: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.rent = Some(rent);
self
}
#[inline(always)]
pub fn amm(&mut self, amm: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.amm = Some(amm);
self
}
#[inline(always)]
pub fn amm_authority(
&mut self,
amm_authority: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.amm_authority = Some(amm_authority);
self
}
#[inline(always)]
pub fn amm_open_orders(
&mut self,
amm_open_orders: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.amm_open_orders = Some(amm_open_orders);
self
}
#[inline(always)]
pub fn lp_mint_address(
&mut self,
lp_mint_address: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.lp_mint_address = Some(lp_mint_address);
self
}
#[inline(always)]
pub fn coin_mint_address(
&mut self,
coin_mint_address: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.coin_mint_address = Some(coin_mint_address);
self
}
#[inline(always)]
pub fn pc_mint_address(
&mut self,
pc_mint_address: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.pc_mint_address = Some(pc_mint_address);
self
}
#[inline(always)]
pub fn pool_coin_token_account(
&mut self,
pool_coin_token_account: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.pool_coin_token_account = Some(pool_coin_token_account);
self
}
#[inline(always)]
pub fn pool_pc_token_account(
&mut self,
pool_pc_token_account: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.pool_pc_token_account = Some(pool_pc_token_account);
self
}
#[inline(always)]
pub fn pool_withdraw_queue(
&mut self,
pool_withdraw_queue: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.pool_withdraw_queue = Some(pool_withdraw_queue);
self
}
#[inline(always)]
pub fn pool_target_orders_account(
&mut self,
pool_target_orders_account: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.pool_target_orders_account = Some(pool_target_orders_account);
self
}
#[inline(always)]
pub fn user_lp_token_account(
&mut self,
user_lp_token_account: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.user_lp_token_account = Some(user_lp_token_account);
self
}
#[inline(always)]
pub fn pool_temp_lp_token_account(
&mut self,
pool_temp_lp_token_account: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.pool_temp_lp_token_account = Some(pool_temp_lp_token_account);
self
}
#[inline(always)]
pub fn serum_program(
&mut self,
serum_program: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.serum_program = Some(serum_program);
self
}
#[inline(always)]
pub fn serum_market(
&mut self,
serum_market: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.serum_market = Some(serum_market);
self
}
#[inline(always)]
pub fn user_wallet(
&mut self,
user_wallet: &'b solana_account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.user_wallet = Some(user_wallet);
self
}
#[inline(always)]
pub fn nonce(&mut self, nonce: u8) -> &mut Self {
self.instruction.nonce = Some(nonce);
self
}
#[inline(always)]
pub fn open_time(&mut self, open_time: u64) -> &mut Self {
self.instruction.open_time = Some(open_time);
self
}
#[inline(always)]
pub fn add_remaining_account(
&mut self,
account: &'b solana_account_info::AccountInfo<'a>,
is_writable: bool,
is_signer: bool,
) -> &mut Self {
self.instruction
.__remaining_accounts
.push((account, is_writable, is_signer));
self
}
#[inline(always)]
pub fn add_remaining_accounts(
&mut self,
accounts: &[(&'b solana_account_info::AccountInfo<'a>, bool, bool)],
) -> &mut Self {
self.instruction
.__remaining_accounts
.extend_from_slice(accounts);
self
}
#[inline(always)]
pub fn invoke(&self) -> solana_program_entrypoint::ProgramResult {
self.invoke_signed(&[])
}
#[allow(clippy::clone_on_copy)]
#[allow(clippy::vec_init_then_push)]
pub fn invoke_signed(
&self,
signers_seeds: &[&[&[u8]]],
) -> solana_program_entrypoint::ProgramResult {
let args = InitializeInstructionArgs {
nonce: self.instruction.nonce.clone().expect("nonce is not set"),
open_time: self
.instruction
.open_time
.clone()
.expect("open_time is not set"),
};
let instruction = InitializeCpi {
__program: self.instruction.__program,
token_program: self
.instruction
.token_program
.expect("token_program is not set"),
system_program: self
.instruction
.system_program
.expect("system_program is not set"),
rent: self.instruction.rent.expect("rent is not set"),
amm: self.instruction.amm.expect("amm is not set"),
amm_authority: self
.instruction
.amm_authority
.expect("amm_authority is not set"),
amm_open_orders: self
.instruction
.amm_open_orders
.expect("amm_open_orders is not set"),
lp_mint_address: self
.instruction
.lp_mint_address
.expect("lp_mint_address is not set"),
coin_mint_address: self
.instruction
.coin_mint_address
.expect("coin_mint_address is not set"),
pc_mint_address: self
.instruction
.pc_mint_address
.expect("pc_mint_address is not set"),
pool_coin_token_account: self
.instruction
.pool_coin_token_account
.expect("pool_coin_token_account is not set"),
pool_pc_token_account: self
.instruction
.pool_pc_token_account
.expect("pool_pc_token_account is not set"),
pool_withdraw_queue: self
.instruction
.pool_withdraw_queue
.expect("pool_withdraw_queue is not set"),
pool_target_orders_account: self
.instruction
.pool_target_orders_account
.expect("pool_target_orders_account is not set"),
user_lp_token_account: self
.instruction
.user_lp_token_account
.expect("user_lp_token_account is not set"),
pool_temp_lp_token_account: self
.instruction
.pool_temp_lp_token_account
.expect("pool_temp_lp_token_account is not set"),
serum_program: self
.instruction
.serum_program
.expect("serum_program is not set"),
serum_market: self
.instruction
.serum_market
.expect("serum_market is not set"),
user_wallet: self
.instruction
.user_wallet
.expect("user_wallet is not set"),
__args: args,
};
instruction.invoke_signed_with_remaining_accounts(
signers_seeds,
&self.instruction.__remaining_accounts,
)
}
}
#[derive(Clone, Debug)]
struct InitializeCpiBuilderInstruction<'a, 'b> {
__program: &'b solana_account_info::AccountInfo<'a>,
token_program: Option<&'b solana_account_info::AccountInfo<'a>>,
system_program: Option<&'b solana_account_info::AccountInfo<'a>>,
rent: Option<&'b solana_account_info::AccountInfo<'a>>,
amm: Option<&'b solana_account_info::AccountInfo<'a>>,
amm_authority: Option<&'b solana_account_info::AccountInfo<'a>>,
amm_open_orders: Option<&'b solana_account_info::AccountInfo<'a>>,
lp_mint_address: Option<&'b solana_account_info::AccountInfo<'a>>,
coin_mint_address: Option<&'b solana_account_info::AccountInfo<'a>>,
pc_mint_address: Option<&'b solana_account_info::AccountInfo<'a>>,
pool_coin_token_account: Option<&'b solana_account_info::AccountInfo<'a>>,
pool_pc_token_account: Option<&'b solana_account_info::AccountInfo<'a>>,
pool_withdraw_queue: Option<&'b solana_account_info::AccountInfo<'a>>,
pool_target_orders_account: Option<&'b solana_account_info::AccountInfo<'a>>,
user_lp_token_account: Option<&'b solana_account_info::AccountInfo<'a>>,
pool_temp_lp_token_account: Option<&'b solana_account_info::AccountInfo<'a>>,
serum_program: Option<&'b solana_account_info::AccountInfo<'a>>,
serum_market: Option<&'b solana_account_info::AccountInfo<'a>>,
user_wallet: Option<&'b solana_account_info::AccountInfo<'a>>,
nonce: Option<u8>,
open_time: Option<u64>,
__remaining_accounts: Vec<(&'b solana_account_info::AccountInfo<'a>, bool, bool)>,
}