use crate::types::PoolFees;
use borsh::BorshDeserialize;
use borsh::BorshSerialize;
pub struct SetPoolFees {
pub pool: solana_program::pubkey::Pubkey,
pub fee_operator: solana_program::pubkey::Pubkey,
}
impl SetPoolFees {
pub fn instruction(
&self,
args: SetPoolFeesInstructionArgs,
) -> solana_program::instruction::Instruction {
self.instruction_with_remaining_accounts(args, &[])
}
#[allow(clippy::vec_init_then_push)]
pub fn instruction_with_remaining_accounts(
&self,
args: SetPoolFeesInstructionArgs,
remaining_accounts: &[solana_program::instruction::AccountMeta],
) -> solana_program::instruction::Instruction {
let mut accounts = Vec::with_capacity(2 + remaining_accounts.len());
accounts.push(solana_program::instruction::AccountMeta::new(
self.pool, false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.fee_operator,
true,
));
accounts.extend_from_slice(remaining_accounts);
let mut data = SetPoolFeesInstructionData::new().try_to_vec().unwrap();
let mut args = args.try_to_vec().unwrap();
data.append(&mut args);
solana_program::instruction::Instruction {
program_id: crate::AMM_ID,
accounts,
data,
}
}
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SetPoolFeesInstructionData {
discriminator: [u8; 8],
}
impl SetPoolFeesInstructionData {
pub fn new() -> Self {
Self {
discriminator: [102, 44, 158, 54, 205, 37, 126, 78],
}
}
}
impl Default for SetPoolFeesInstructionData {
fn default() -> Self {
Self::new()
}
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SetPoolFeesInstructionArgs {
pub fees: PoolFees,
pub new_partner_fee_numerator: u64,
}
#[derive(Clone, Debug, Default)]
pub struct SetPoolFeesBuilder {
pool: Option<solana_program::pubkey::Pubkey>,
fee_operator: Option<solana_program::pubkey::Pubkey>,
fees: Option<PoolFees>,
new_partner_fee_numerator: Option<u64>,
__remaining_accounts: Vec<solana_program::instruction::AccountMeta>,
}
impl SetPoolFeesBuilder {
pub fn new() -> Self {
Self::default()
}
#[inline(always)]
pub fn pool(&mut self, pool: solana_program::pubkey::Pubkey) -> &mut Self {
self.pool = Some(pool);
self
}
#[inline(always)]
pub fn fee_operator(&mut self, fee_operator: solana_program::pubkey::Pubkey) -> &mut Self {
self.fee_operator = Some(fee_operator);
self
}
#[inline(always)]
pub fn fees(&mut self, fees: PoolFees) -> &mut Self {
self.fees = Some(fees);
self
}
#[inline(always)]
pub fn new_partner_fee_numerator(&mut self, new_partner_fee_numerator: u64) -> &mut Self {
self.new_partner_fee_numerator = Some(new_partner_fee_numerator);
self
}
#[inline(always)]
pub fn add_remaining_account(
&mut self,
account: solana_program::instruction::AccountMeta,
) -> &mut Self {
self.__remaining_accounts.push(account);
self
}
#[inline(always)]
pub fn add_remaining_accounts(
&mut self,
accounts: &[solana_program::instruction::AccountMeta],
) -> &mut Self {
self.__remaining_accounts.extend_from_slice(accounts);
self
}
#[allow(clippy::clone_on_copy)]
pub fn instruction(&self) -> solana_program::instruction::Instruction {
let accounts = SetPoolFees {
pool: self.pool.expect("pool is not set"),
fee_operator: self.fee_operator.expect("fee_operator is not set"),
};
let args = SetPoolFeesInstructionArgs {
fees: self.fees.clone().expect("fees is not set"),
new_partner_fee_numerator: self
.new_partner_fee_numerator
.clone()
.expect("new_partner_fee_numerator is not set"),
};
accounts.instruction_with_remaining_accounts(args, &self.__remaining_accounts)
}
}
pub struct SetPoolFeesCpiAccounts<'a, 'b> {
pub pool: &'b solana_program::account_info::AccountInfo<'a>,
pub fee_operator: &'b solana_program::account_info::AccountInfo<'a>,
}
pub struct SetPoolFeesCpi<'a, 'b> {
pub __program: &'b solana_program::account_info::AccountInfo<'a>,
pub pool: &'b solana_program::account_info::AccountInfo<'a>,
pub fee_operator: &'b solana_program::account_info::AccountInfo<'a>,
pub __args: SetPoolFeesInstructionArgs,
}
impl<'a, 'b> SetPoolFeesCpi<'a, 'b> {
pub fn new(
program: &'b solana_program::account_info::AccountInfo<'a>,
accounts: SetPoolFeesCpiAccounts<'a, 'b>,
args: SetPoolFeesInstructionArgs,
) -> Self {
Self {
__program: program,
pool: accounts.pool,
fee_operator: accounts.fee_operator,
__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_program::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::clone_on_copy)]
#[allow(clippy::vec_init_then_push)]
pub fn invoke_signed_with_remaining_accounts(
&self,
signers_seeds: &[&[&[u8]]],
remaining_accounts: &[(
&'b solana_program::account_info::AccountInfo<'a>,
bool,
bool,
)],
) -> solana_program::entrypoint::ProgramResult {
let mut accounts = Vec::with_capacity(2 + remaining_accounts.len());
accounts.push(solana_program::instruction::AccountMeta::new(
*self.pool.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.fee_operator.key,
true,
));
remaining_accounts.iter().for_each(|remaining_account| {
accounts.push(solana_program::instruction::AccountMeta {
pubkey: *remaining_account.0.key,
is_signer: remaining_account.1,
is_writable: remaining_account.2,
})
});
let mut data = SetPoolFeesInstructionData::new().try_to_vec().unwrap();
let mut args = self.__args.try_to_vec().unwrap();
data.append(&mut args);
let instruction = solana_program::instruction::Instruction {
program_id: crate::AMM_ID,
accounts,
data,
};
let mut account_infos = Vec::with_capacity(3 + remaining_accounts.len());
account_infos.push(self.__program.clone());
account_infos.push(self.pool.clone());
account_infos.push(self.fee_operator.clone());
remaining_accounts
.iter()
.for_each(|remaining_account| account_infos.push(remaining_account.0.clone()));
if signers_seeds.is_empty() {
solana_program::program::invoke(&instruction, &account_infos)
} else {
solana_program::program::invoke_signed(&instruction, &account_infos, signers_seeds)
}
}
}
#[derive(Clone, Debug)]
pub struct SetPoolFeesCpiBuilder<'a, 'b> {
instruction: Box<SetPoolFeesCpiBuilderInstruction<'a, 'b>>,
}
impl<'a, 'b> SetPoolFeesCpiBuilder<'a, 'b> {
pub fn new(program: &'b solana_program::account_info::AccountInfo<'a>) -> Self {
let instruction = Box::new(SetPoolFeesCpiBuilderInstruction {
__program: program,
pool: None,
fee_operator: None,
fees: None,
new_partner_fee_numerator: None,
__remaining_accounts: Vec::new(),
});
Self { instruction }
}
#[inline(always)]
pub fn pool(&mut self, pool: &'b solana_program::account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.pool = Some(pool);
self
}
#[inline(always)]
pub fn fee_operator(
&mut self,
fee_operator: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.fee_operator = Some(fee_operator);
self
}
#[inline(always)]
pub fn fees(&mut self, fees: PoolFees) -> &mut Self {
self.instruction.fees = Some(fees);
self
}
#[inline(always)]
pub fn new_partner_fee_numerator(&mut self, new_partner_fee_numerator: u64) -> &mut Self {
self.instruction.new_partner_fee_numerator = Some(new_partner_fee_numerator);
self
}
#[inline(always)]
pub fn add_remaining_account(
&mut self,
account: &'b solana_program::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_program::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 = SetPoolFeesInstructionArgs {
fees: self.instruction.fees.clone().expect("fees is not set"),
new_partner_fee_numerator: self
.instruction
.new_partner_fee_numerator
.clone()
.expect("new_partner_fee_numerator is not set"),
};
let instruction = SetPoolFeesCpi {
__program: self.instruction.__program,
pool: self.instruction.pool.expect("pool is not set"),
fee_operator: self
.instruction
.fee_operator
.expect("fee_operator is not set"),
__args: args,
};
instruction.invoke_signed_with_remaining_accounts(
signers_seeds,
&self.instruction.__remaining_accounts,
)
}
}
#[derive(Clone, Debug)]
struct SetPoolFeesCpiBuilderInstruction<'a, 'b> {
__program: &'b solana_program::account_info::AccountInfo<'a>,
pool: Option<&'b solana_program::account_info::AccountInfo<'a>>,
fee_operator: Option<&'b solana_program::account_info::AccountInfo<'a>>,
fees: Option<PoolFees>,
new_partner_fee_numerator: Option<u64>,
__remaining_accounts: Vec<(
&'b solana_program::account_info::AccountInfo<'a>,
bool,
bool,
)>,
}