use borsh::BorshSerialize;
use borsh::BorshDeserialize;
pub const CLOSE_BUNDLED_POSITION_DISCRIMINATOR: [u8; 8] = [41, 36, 216, 245, 27, 85, 103, 67];
#[derive(Debug)]
pub struct CloseBundledPosition {
pub bundled_position: solana_pubkey::Pubkey,
pub position_bundle: solana_pubkey::Pubkey,
pub position_bundle_token_account: solana_pubkey::Pubkey,
pub position_bundle_authority: solana_pubkey::Pubkey,
pub receiver: solana_pubkey::Pubkey,
}
impl CloseBundledPosition {
pub fn instruction(&self, args: CloseBundledPositionInstructionArgs) -> 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: CloseBundledPositionInstructionArgs, remaining_accounts: &[solana_instruction::AccountMeta]) -> solana_instruction::Instruction {
let mut accounts = Vec::with_capacity(5+ remaining_accounts.len());
accounts.push(solana_instruction::AccountMeta::new(
self.bundled_position,
false
));
accounts.push(solana_instruction::AccountMeta::new(
self.position_bundle,
false
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.position_bundle_token_account,
false
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.position_bundle_authority,
true
));
accounts.push(solana_instruction::AccountMeta::new(
self.receiver,
false
));
accounts.extend_from_slice(remaining_accounts);
let mut data = borsh::to_vec(&CloseBundledPositionInstructionData::new()).unwrap();
let mut args = borsh::to_vec(&args).unwrap();
data.append(&mut args);
solana_instruction::Instruction {
program_id: crate::FUSIONAMM_ID,
accounts,
data,
}
}
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct CloseBundledPositionInstructionData {
discriminator: [u8; 8],
}
impl CloseBundledPositionInstructionData {
pub fn new() -> Self {
Self {
discriminator: [41, 36, 216, 245, 27, 85, 103, 67],
}
}
}
impl Default for CloseBundledPositionInstructionData {
fn default() -> Self {
Self::new()
}
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct CloseBundledPositionInstructionArgs {
pub bundle_index: u16,
}
#[derive(Clone, Debug, Default)]
pub struct CloseBundledPositionBuilder {
bundled_position: Option<solana_pubkey::Pubkey>,
position_bundle: Option<solana_pubkey::Pubkey>,
position_bundle_token_account: Option<solana_pubkey::Pubkey>,
position_bundle_authority: Option<solana_pubkey::Pubkey>,
receiver: Option<solana_pubkey::Pubkey>,
bundle_index: Option<u16>,
__remaining_accounts: Vec<solana_instruction::AccountMeta>,
}
impl CloseBundledPositionBuilder {
pub fn new() -> Self {
Self::default()
}
#[inline(always)]
pub fn bundled_position(&mut self, bundled_position: solana_pubkey::Pubkey) -> &mut Self {
self.bundled_position = Some(bundled_position);
self
}
#[inline(always)]
pub fn position_bundle(&mut self, position_bundle: solana_pubkey::Pubkey) -> &mut Self {
self.position_bundle = Some(position_bundle);
self
}
#[inline(always)]
pub fn position_bundle_token_account(&mut self, position_bundle_token_account: solana_pubkey::Pubkey) -> &mut Self {
self.position_bundle_token_account = Some(position_bundle_token_account);
self
}
#[inline(always)]
pub fn position_bundle_authority(&mut self, position_bundle_authority: solana_pubkey::Pubkey) -> &mut Self {
self.position_bundle_authority = Some(position_bundle_authority);
self
}
#[inline(always)]
pub fn receiver(&mut self, receiver: solana_pubkey::Pubkey) -> &mut Self {
self.receiver = Some(receiver);
self
}
#[inline(always)]
pub fn bundle_index(&mut self, bundle_index: u16) -> &mut Self {
self.bundle_index = Some(bundle_index);
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 = CloseBundledPosition {
bundled_position: self.bundled_position.expect("bundled_position is not set"),
position_bundle: self.position_bundle.expect("position_bundle is not set"),
position_bundle_token_account: self.position_bundle_token_account.expect("position_bundle_token_account is not set"),
position_bundle_authority: self.position_bundle_authority.expect("position_bundle_authority is not set"),
receiver: self.receiver.expect("receiver is not set"),
};
let args = CloseBundledPositionInstructionArgs {
bundle_index: self.bundle_index.clone().expect("bundle_index is not set"),
};
accounts.instruction_with_remaining_accounts(args, &self.__remaining_accounts)
}
}
pub struct CloseBundledPositionCpiAccounts<'a, 'b> {
pub bundled_position: &'b solana_account_info::AccountInfo<'a>,
pub position_bundle: &'b solana_account_info::AccountInfo<'a>,
pub position_bundle_token_account: &'b solana_account_info::AccountInfo<'a>,
pub position_bundle_authority: &'b solana_account_info::AccountInfo<'a>,
pub receiver: &'b solana_account_info::AccountInfo<'a>,
}
pub struct CloseBundledPositionCpi<'a, 'b> {
pub __program: &'b solana_account_info::AccountInfo<'a>,
pub bundled_position: &'b solana_account_info::AccountInfo<'a>,
pub position_bundle: &'b solana_account_info::AccountInfo<'a>,
pub position_bundle_token_account: &'b solana_account_info::AccountInfo<'a>,
pub position_bundle_authority: &'b solana_account_info::AccountInfo<'a>,
pub receiver: &'b solana_account_info::AccountInfo<'a>,
pub __args: CloseBundledPositionInstructionArgs,
}
impl<'a, 'b> CloseBundledPositionCpi<'a, 'b> {
pub fn new(
program: &'b solana_account_info::AccountInfo<'a>,
accounts: CloseBundledPositionCpiAccounts<'a, 'b>,
args: CloseBundledPositionInstructionArgs,
) -> Self {
Self {
__program: program,
bundled_position: accounts.bundled_position,
position_bundle: accounts.position_bundle,
position_bundle_token_account: accounts.position_bundle_token_account,
position_bundle_authority: accounts.position_bundle_authority,
receiver: accounts.receiver,
__args: args,
}
}
#[inline(always)]
pub fn invoke(&self) -> solana_program_error::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_error::ProgramResult {
self.invoke_signed_with_remaining_accounts(&[], remaining_accounts)
}
#[inline(always)]
pub fn invoke_signed(&self, signers_seeds: &[&[&[u8]]]) -> solana_program_error::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_error::ProgramResult {
let mut accounts = Vec::with_capacity(5+ remaining_accounts.len());
accounts.push(solana_instruction::AccountMeta::new(
*self.bundled_position.key,
false
));
accounts.push(solana_instruction::AccountMeta::new(
*self.position_bundle.key,
false
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.position_bundle_token_account.key,
false
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.position_bundle_authority.key,
true
));
accounts.push(solana_instruction::AccountMeta::new(
*self.receiver.key,
false
));
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(&CloseBundledPositionInstructionData::new()).unwrap();
let mut args = borsh::to_vec(&self.__args).unwrap();
data.append(&mut args);
let instruction = solana_instruction::Instruction {
program_id: crate::FUSIONAMM_ID,
accounts,
data,
};
let mut account_infos = Vec::with_capacity(6 + remaining_accounts.len());
account_infos.push(self.__program.clone());
account_infos.push(self.bundled_position.clone());
account_infos.push(self.position_bundle.clone());
account_infos.push(self.position_bundle_token_account.clone());
account_infos.push(self.position_bundle_authority.clone());
account_infos.push(self.receiver.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 CloseBundledPositionCpiBuilder<'a, 'b> {
instruction: Box<CloseBundledPositionCpiBuilderInstruction<'a, 'b>>,
}
impl<'a, 'b> CloseBundledPositionCpiBuilder<'a, 'b> {
pub fn new(program: &'b solana_account_info::AccountInfo<'a>) -> Self {
let instruction = Box::new(CloseBundledPositionCpiBuilderInstruction {
__program: program,
bundled_position: None,
position_bundle: None,
position_bundle_token_account: None,
position_bundle_authority: None,
receiver: None,
bundle_index: None,
__remaining_accounts: Vec::new(),
});
Self { instruction }
}
#[inline(always)]
pub fn bundled_position(&mut self, bundled_position: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.bundled_position = Some(bundled_position);
self
}
#[inline(always)]
pub fn position_bundle(&mut self, position_bundle: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.position_bundle = Some(position_bundle);
self
}
#[inline(always)]
pub fn position_bundle_token_account(&mut self, position_bundle_token_account: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.position_bundle_token_account = Some(position_bundle_token_account);
self
}
#[inline(always)]
pub fn position_bundle_authority(&mut self, position_bundle_authority: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.position_bundle_authority = Some(position_bundle_authority);
self
}
#[inline(always)]
pub fn receiver(&mut self, receiver: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.receiver = Some(receiver);
self
}
#[inline(always)]
pub fn bundle_index(&mut self, bundle_index: u16) -> &mut Self {
self.instruction.bundle_index = Some(bundle_index);
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_error::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_error::ProgramResult {
let args = CloseBundledPositionInstructionArgs {
bundle_index: self.instruction.bundle_index.clone().expect("bundle_index is not set"),
};
let instruction = CloseBundledPositionCpi {
__program: self.instruction.__program,
bundled_position: self.instruction.bundled_position.expect("bundled_position is not set"),
position_bundle: self.instruction.position_bundle.expect("position_bundle is not set"),
position_bundle_token_account: self.instruction.position_bundle_token_account.expect("position_bundle_token_account is not set"),
position_bundle_authority: self.instruction.position_bundle_authority.expect("position_bundle_authority is not set"),
receiver: self.instruction.receiver.expect("receiver is not set"),
__args: args,
};
instruction.invoke_signed_with_remaining_accounts(signers_seeds, &self.instruction.__remaining_accounts)
}
}
#[derive(Clone, Debug)]
struct CloseBundledPositionCpiBuilderInstruction<'a, 'b> {
__program: &'b solana_account_info::AccountInfo<'a>,
bundled_position: Option<&'b solana_account_info::AccountInfo<'a>>,
position_bundle: Option<&'b solana_account_info::AccountInfo<'a>>,
position_bundle_token_account: Option<&'b solana_account_info::AccountInfo<'a>>,
position_bundle_authority: Option<&'b solana_account_info::AccountInfo<'a>>,
receiver: Option<&'b solana_account_info::AccountInfo<'a>>,
bundle_index: Option<u16>,
__remaining_accounts: Vec<(&'b solana_account_info::AccountInfo<'a>, bool, bool)>,
}