use borsh::BorshSerialize;
use borsh::BorshDeserialize;
pub const REPAY_BAD_DEBT_DISCRIMINATOR: [u8; 8] = [112, 144, 188, 157, 43, 106, 141, 34];
#[derive(Debug)]
pub struct RepayBadDebt {
pub authority: solana_pubkey::Pubkey,
pub mint: solana_pubkey::Pubkey,
pub vault: solana_pubkey::Pubkey,
pub vault_ata: solana_pubkey::Pubkey,
pub authority_ata: solana_pubkey::Pubkey,
pub token_program: solana_pubkey::Pubkey,
pub memo_program: solana_pubkey::Pubkey,
}
impl RepayBadDebt {
pub fn instruction(&self, args: RepayBadDebtInstructionArgs) -> 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: RepayBadDebtInstructionArgs, remaining_accounts: &[solana_instruction::AccountMeta]) -> solana_instruction::Instruction {
let mut accounts = Vec::with_capacity(7+ remaining_accounts.len());
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.authority,
true
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.mint,
false
));
accounts.push(solana_instruction::AccountMeta::new(
self.vault,
false
));
accounts.push(solana_instruction::AccountMeta::new(
self.vault_ata,
false
));
accounts.push(solana_instruction::AccountMeta::new(
self.authority_ata,
false
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.token_program,
false
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.memo_program,
false
));
accounts.extend_from_slice(remaining_accounts);
let mut data = borsh::to_vec(&RepayBadDebtInstructionData::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 RepayBadDebtInstructionData {
discriminator: [u8; 8],
}
impl RepayBadDebtInstructionData {
pub fn new() -> Self {
Self {
discriminator: [112, 144, 188, 157, 43, 106, 141, 34],
}
}
}
impl Default for RepayBadDebtInstructionData {
fn default() -> Self {
Self::new()
}
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct RepayBadDebtInstructionArgs {
pub funds: u64,
pub shares: u64,
}
#[derive(Clone, Debug, Default)]
pub struct RepayBadDebtBuilder {
authority: Option<solana_pubkey::Pubkey>,
mint: Option<solana_pubkey::Pubkey>,
vault: Option<solana_pubkey::Pubkey>,
vault_ata: Option<solana_pubkey::Pubkey>,
authority_ata: Option<solana_pubkey::Pubkey>,
token_program: Option<solana_pubkey::Pubkey>,
memo_program: Option<solana_pubkey::Pubkey>,
funds: Option<u64>,
shares: Option<u64>,
__remaining_accounts: Vec<solana_instruction::AccountMeta>,
}
impl RepayBadDebtBuilder {
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 mint(&mut self, mint: solana_pubkey::Pubkey) -> &mut Self {
self.mint = Some(mint);
self
}
#[inline(always)]
pub fn vault(&mut self, vault: solana_pubkey::Pubkey) -> &mut Self {
self.vault = Some(vault);
self
}
#[inline(always)]
pub fn vault_ata(&mut self, vault_ata: solana_pubkey::Pubkey) -> &mut Self {
self.vault_ata = Some(vault_ata);
self
}
#[inline(always)]
pub fn authority_ata(&mut self, authority_ata: solana_pubkey::Pubkey) -> &mut Self {
self.authority_ata = Some(authority_ata);
self
}
#[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 memo_program(&mut self, memo_program: solana_pubkey::Pubkey) -> &mut Self {
self.memo_program = Some(memo_program);
self
}
#[inline(always)]
pub fn funds(&mut self, funds: u64) -> &mut Self {
self.funds = Some(funds);
self
}
#[inline(always)]
pub fn shares(&mut self, shares: u64) -> &mut Self {
self.shares = Some(shares);
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 = RepayBadDebt {
authority: self.authority.expect("authority is not set"),
mint: self.mint.expect("mint is not set"),
vault: self.vault.expect("vault is not set"),
vault_ata: self.vault_ata.expect("vault_ata is not set"),
authority_ata: self.authority_ata.expect("authority_ata is not set"),
token_program: self.token_program.unwrap_or(solana_pubkey::pubkey!("TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA")),
memo_program: self.memo_program.expect("memo_program is not set"),
};
let args = RepayBadDebtInstructionArgs {
funds: self.funds.clone().expect("funds is not set"),
shares: self.shares.clone().expect("shares is not set"),
};
accounts.instruction_with_remaining_accounts(args, &self.__remaining_accounts)
}
}
pub struct RepayBadDebtCpiAccounts<'a, 'b> {
pub authority: &'b solana_account_info::AccountInfo<'a>,
pub mint: &'b solana_account_info::AccountInfo<'a>,
pub vault: &'b solana_account_info::AccountInfo<'a>,
pub vault_ata: &'b solana_account_info::AccountInfo<'a>,
pub authority_ata: &'b solana_account_info::AccountInfo<'a>,
pub token_program: &'b solana_account_info::AccountInfo<'a>,
pub memo_program: &'b solana_account_info::AccountInfo<'a>,
}
pub struct RepayBadDebtCpi<'a, 'b> {
pub __program: &'b solana_account_info::AccountInfo<'a>,
pub authority: &'b solana_account_info::AccountInfo<'a>,
pub mint: &'b solana_account_info::AccountInfo<'a>,
pub vault: &'b solana_account_info::AccountInfo<'a>,
pub vault_ata: &'b solana_account_info::AccountInfo<'a>,
pub authority_ata: &'b solana_account_info::AccountInfo<'a>,
pub token_program: &'b solana_account_info::AccountInfo<'a>,
pub memo_program: &'b solana_account_info::AccountInfo<'a>,
pub __args: RepayBadDebtInstructionArgs,
}
impl<'a, 'b> RepayBadDebtCpi<'a, 'b> {
pub fn new(
program: &'b solana_account_info::AccountInfo<'a>,
accounts: RepayBadDebtCpiAccounts<'a, 'b>,
args: RepayBadDebtInstructionArgs,
) -> Self {
Self {
__program: program,
authority: accounts.authority,
mint: accounts.mint,
vault: accounts.vault,
vault_ata: accounts.vault_ata,
authority_ata: accounts.authority_ata,
token_program: accounts.token_program,
memo_program: accounts.memo_program,
__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(7+ remaining_accounts.len());
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.authority.key,
true
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.mint.key,
false
));
accounts.push(solana_instruction::AccountMeta::new(
*self.vault.key,
false
));
accounts.push(solana_instruction::AccountMeta::new(
*self.vault_ata.key,
false
));
accounts.push(solana_instruction::AccountMeta::new(
*self.authority_ata.key,
false
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.token_program.key,
false
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.memo_program.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(&RepayBadDebtInstructionData::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(8 + remaining_accounts.len());
account_infos.push(self.__program.clone());
account_infos.push(self.authority.clone());
account_infos.push(self.mint.clone());
account_infos.push(self.vault.clone());
account_infos.push(self.vault_ata.clone());
account_infos.push(self.authority_ata.clone());
account_infos.push(self.token_program.clone());
account_infos.push(self.memo_program.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 RepayBadDebtCpiBuilder<'a, 'b> {
instruction: Box<RepayBadDebtCpiBuilderInstruction<'a, 'b>>,
}
impl<'a, 'b> RepayBadDebtCpiBuilder<'a, 'b> {
pub fn new(program: &'b solana_account_info::AccountInfo<'a>) -> Self {
let instruction = Box::new(RepayBadDebtCpiBuilderInstruction {
__program: program,
authority: None,
mint: None,
vault: None,
vault_ata: None,
authority_ata: None,
token_program: None,
memo_program: None,
funds: None,
shares: 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 mint(&mut self, mint: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.mint = Some(mint);
self
}
#[inline(always)]
pub fn vault(&mut self, vault: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.vault = Some(vault);
self
}
#[inline(always)]
pub fn vault_ata(&mut self, vault_ata: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.vault_ata = Some(vault_ata);
self
}
#[inline(always)]
pub fn authority_ata(&mut self, authority_ata: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.authority_ata = Some(authority_ata);
self
}
#[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 memo_program(&mut self, memo_program: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.memo_program = Some(memo_program);
self
}
#[inline(always)]
pub fn funds(&mut self, funds: u64) -> &mut Self {
self.instruction.funds = Some(funds);
self
}
#[inline(always)]
pub fn shares(&mut self, shares: u64) -> &mut Self {
self.instruction.shares = Some(shares);
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 = RepayBadDebtInstructionArgs {
funds: self.instruction.funds.clone().expect("funds is not set"),
shares: self.instruction.shares.clone().expect("shares is not set"),
};
let instruction = RepayBadDebtCpi {
__program: self.instruction.__program,
authority: self.instruction.authority.expect("authority is not set"),
mint: self.instruction.mint.expect("mint is not set"),
vault: self.instruction.vault.expect("vault is not set"),
vault_ata: self.instruction.vault_ata.expect("vault_ata is not set"),
authority_ata: self.instruction.authority_ata.expect("authority_ata is not set"),
token_program: self.instruction.token_program.expect("token_program is not set"),
memo_program: self.instruction.memo_program.expect("memo_program is not set"),
__args: args,
};
instruction.invoke_signed_with_remaining_accounts(signers_seeds, &self.instruction.__remaining_accounts)
}
}
#[derive(Clone, Debug)]
struct RepayBadDebtCpiBuilderInstruction<'a, 'b> {
__program: &'b solana_account_info::AccountInfo<'a>,
authority: Option<&'b solana_account_info::AccountInfo<'a>>,
mint: Option<&'b solana_account_info::AccountInfo<'a>>,
vault: Option<&'b solana_account_info::AccountInfo<'a>>,
vault_ata: Option<&'b solana_account_info::AccountInfo<'a>>,
authority_ata: Option<&'b solana_account_info::AccountInfo<'a>>,
token_program: Option<&'b solana_account_info::AccountInfo<'a>>,
memo_program: Option<&'b solana_account_info::AccountInfo<'a>>,
funds: Option<u64>,
shares: Option<u64>,
__remaining_accounts: Vec<(&'b solana_account_info::AccountInfo<'a>, bool, bool)>,
}