use borsh::BorshSerialize;
use borsh::BorshDeserialize;
pub const SET_SUSPENDED_STATE_DISCRIMINATOR: [u8; 8] = [145, 13, 20, 161, 30, 62, 226, 32];
#[derive(Debug)]
pub struct SetSuspendedState {
pub authority: solana_pubkey::Pubkey,
pub tuna_config: solana_pubkey::Pubkey,
}
impl SetSuspendedState {
pub fn instruction(&self, args: SetSuspendedStateInstructionArgs) -> 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: SetSuspendedStateInstructionArgs, remaining_accounts: &[solana_instruction::AccountMeta]) -> solana_instruction::Instruction {
let mut accounts = Vec::with_capacity(2+ remaining_accounts.len());
accounts.push(solana_instruction::AccountMeta::new(
self.authority,
true
));
accounts.push(solana_instruction::AccountMeta::new(
self.tuna_config,
false
));
accounts.extend_from_slice(remaining_accounts);
let mut data = borsh::to_vec(&SetSuspendedStateInstructionData::new()).unwrap();
let mut args = borsh::to_vec(&args).unwrap();
data.append(&mut args);
solana_instruction::Instruction {
program_id: crate::TUNA_ID,
accounts,
data,
}
}
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SetSuspendedStateInstructionData {
discriminator: [u8; 8],
}
impl SetSuspendedStateInstructionData {
pub fn new() -> Self {
Self {
discriminator: [145, 13, 20, 161, 30, 62, 226, 32],
}
}
}
impl Default for SetSuspendedStateInstructionData {
fn default() -> Self {
Self::new()
}
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct SetSuspendedStateInstructionArgs {
pub suspend_lending_deposits: bool,
pub suspend_lending_withdrawals: bool,
pub suspend_add_liquidity: bool,
pub suspend_remove_liquidity: bool,
}
#[derive(Clone, Debug, Default)]
pub struct SetSuspendedStateBuilder {
authority: Option<solana_pubkey::Pubkey>,
tuna_config: Option<solana_pubkey::Pubkey>,
suspend_lending_deposits: Option<bool>,
suspend_lending_withdrawals: Option<bool>,
suspend_add_liquidity: Option<bool>,
suspend_remove_liquidity: Option<bool>,
__remaining_accounts: Vec<solana_instruction::AccountMeta>,
}
impl SetSuspendedStateBuilder {
pub fn new() -> Self {
Self::default()
}
#[inline(always)]
pub fn authority(&mut self, authority: solana_pubkey::Pubkey) -> &mut Self {
self.authority = Some(authority);
self
}
#[inline(always)]
pub fn tuna_config(&mut self, tuna_config: solana_pubkey::Pubkey) -> &mut Self {
self.tuna_config = Some(tuna_config);
self
}
#[inline(always)]
pub fn suspend_lending_deposits(&mut self, suspend_lending_deposits: bool) -> &mut Self {
self.suspend_lending_deposits = Some(suspend_lending_deposits);
self
}
#[inline(always)]
pub fn suspend_lending_withdrawals(&mut self, suspend_lending_withdrawals: bool) -> &mut Self {
self.suspend_lending_withdrawals = Some(suspend_lending_withdrawals);
self
}
#[inline(always)]
pub fn suspend_add_liquidity(&mut self, suspend_add_liquidity: bool) -> &mut Self {
self.suspend_add_liquidity = Some(suspend_add_liquidity);
self
}
#[inline(always)]
pub fn suspend_remove_liquidity(&mut self, suspend_remove_liquidity: bool) -> &mut Self {
self.suspend_remove_liquidity = Some(suspend_remove_liquidity);
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 = SetSuspendedState {
authority: self.authority.expect("authority is not set"),
tuna_config: self.tuna_config.expect("tuna_config is not set"),
};
let args = SetSuspendedStateInstructionArgs {
suspend_lending_deposits: self.suspend_lending_deposits.clone().expect("suspend_lending_deposits is not set"),
suspend_lending_withdrawals: self.suspend_lending_withdrawals.clone().expect("suspend_lending_withdrawals is not set"),
suspend_add_liquidity: self.suspend_add_liquidity.clone().expect("suspend_add_liquidity is not set"),
suspend_remove_liquidity: self.suspend_remove_liquidity.clone().expect("suspend_remove_liquidity is not set"),
};
accounts.instruction_with_remaining_accounts(args, &self.__remaining_accounts)
}
}
pub struct SetSuspendedStateCpiAccounts<'a, 'b> {
pub authority: &'b solana_account_info::AccountInfo<'a>,
pub tuna_config: &'b solana_account_info::AccountInfo<'a>,
}
pub struct SetSuspendedStateCpi<'a, 'b> {
pub __program: &'b solana_account_info::AccountInfo<'a>,
pub authority: &'b solana_account_info::AccountInfo<'a>,
pub tuna_config: &'b solana_account_info::AccountInfo<'a>,
pub __args: SetSuspendedStateInstructionArgs,
}
impl<'a, 'b> SetSuspendedStateCpi<'a, 'b> {
pub fn new(
program: &'b solana_account_info::AccountInfo<'a>,
accounts: SetSuspendedStateCpiAccounts<'a, 'b>,
args: SetSuspendedStateInstructionArgs,
) -> Self {
Self {
__program: program,
authority: accounts.authority,
tuna_config: accounts.tuna_config,
__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(2+ remaining_accounts.len());
accounts.push(solana_instruction::AccountMeta::new(
*self.authority.key,
true
));
accounts.push(solana_instruction::AccountMeta::new(
*self.tuna_config.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(&SetSuspendedStateInstructionData::new()).unwrap();
let mut args = borsh::to_vec(&self.__args).unwrap();
data.append(&mut args);
let instruction = solana_instruction::Instruction {
program_id: crate::TUNA_ID,
accounts,
data,
};
let mut account_infos = Vec::with_capacity(3 + remaining_accounts.len());
account_infos.push(self.__program.clone());
account_infos.push(self.authority.clone());
account_infos.push(self.tuna_config.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 SetSuspendedStateCpiBuilder<'a, 'b> {
instruction: Box<SetSuspendedStateCpiBuilderInstruction<'a, 'b>>,
}
impl<'a, 'b> SetSuspendedStateCpiBuilder<'a, 'b> {
pub fn new(program: &'b solana_account_info::AccountInfo<'a>) -> Self {
let instruction = Box::new(SetSuspendedStateCpiBuilderInstruction {
__program: program,
authority: None,
tuna_config: None,
suspend_lending_deposits: None,
suspend_lending_withdrawals: None,
suspend_add_liquidity: None,
suspend_remove_liquidity: None,
__remaining_accounts: Vec::new(),
});
Self { instruction }
}
#[inline(always)]
pub fn authority(&mut self, authority: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.authority = Some(authority);
self
}
#[inline(always)]
pub fn tuna_config(&mut self, tuna_config: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.tuna_config = Some(tuna_config);
self
}
#[inline(always)]
pub fn suspend_lending_deposits(&mut self, suspend_lending_deposits: bool) -> &mut Self {
self.instruction.suspend_lending_deposits = Some(suspend_lending_deposits);
self
}
#[inline(always)]
pub fn suspend_lending_withdrawals(&mut self, suspend_lending_withdrawals: bool) -> &mut Self {
self.instruction.suspend_lending_withdrawals = Some(suspend_lending_withdrawals);
self
}
#[inline(always)]
pub fn suspend_add_liquidity(&mut self, suspend_add_liquidity: bool) -> &mut Self {
self.instruction.suspend_add_liquidity = Some(suspend_add_liquidity);
self
}
#[inline(always)]
pub fn suspend_remove_liquidity(&mut self, suspend_remove_liquidity: bool) -> &mut Self {
self.instruction.suspend_remove_liquidity = Some(suspend_remove_liquidity);
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 = SetSuspendedStateInstructionArgs {
suspend_lending_deposits: self.instruction.suspend_lending_deposits.clone().expect("suspend_lending_deposits is not set"),
suspend_lending_withdrawals: self.instruction.suspend_lending_withdrawals.clone().expect("suspend_lending_withdrawals is not set"),
suspend_add_liquidity: self.instruction.suspend_add_liquidity.clone().expect("suspend_add_liquidity is not set"),
suspend_remove_liquidity: self.instruction.suspend_remove_liquidity.clone().expect("suspend_remove_liquidity is not set"),
};
let instruction = SetSuspendedStateCpi {
__program: self.instruction.__program,
authority: self.instruction.authority.expect("authority is not set"),
tuna_config: self.instruction.tuna_config.expect("tuna_config is not set"),
__args: args,
};
instruction.invoke_signed_with_remaining_accounts(signers_seeds, &self.instruction.__remaining_accounts)
}
}
#[derive(Clone, Debug)]
struct SetSuspendedStateCpiBuilderInstruction<'a, 'b> {
__program: &'b solana_account_info::AccountInfo<'a>,
authority: Option<&'b solana_account_info::AccountInfo<'a>>,
tuna_config: Option<&'b solana_account_info::AccountInfo<'a>>,
suspend_lending_deposits: Option<bool>,
suspend_lending_withdrawals: Option<bool>,
suspend_add_liquidity: Option<bool>,
suspend_remove_liquidity: Option<bool>,
__remaining_accounts: Vec<(&'b solana_account_info::AccountInfo<'a>, bool, bool)>,
}