use solana_pubkey::Pubkey;
use borsh::BorshSerialize;
use borsh::BorshDeserialize;
pub const UPDATE_VAULT_DISCRIMINATOR: [u8; 8] = [67, 229, 185, 188, 226, 11, 210, 60];
#[derive(Debug)]
pub struct UpdateVault {
pub authority: solana_pubkey::Pubkey,
pub tuna_config: solana_pubkey::Pubkey,
pub vault: solana_pubkey::Pubkey,
}
impl UpdateVault {
pub fn instruction(&self, args: UpdateVaultInstructionArgs) -> 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: UpdateVaultInstructionArgs, remaining_accounts: &[solana_instruction::AccountMeta]) -> solana_instruction::Instruction {
let mut accounts = Vec::with_capacity(3+ remaining_accounts.len());
accounts.push(solana_instruction::AccountMeta::new(
self.authority,
true
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
self.tuna_config,
false
));
accounts.push(solana_instruction::AccountMeta::new(
self.vault,
false
));
accounts.extend_from_slice(remaining_accounts);
let mut data = borsh::to_vec(&UpdateVaultInstructionData::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 UpdateVaultInstructionData {
discriminator: [u8; 8],
}
impl UpdateVaultInstructionData {
pub fn new() -> Self {
Self {
discriminator: [67, 229, 185, 188, 226, 11, 210, 60],
}
}
}
impl Default for UpdateVaultInstructionData {
fn default() -> Self {
Self::new()
}
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct UpdateVaultInstructionArgs {
pub interest_rate: u64,
pub supply_limit: u64,
pub pyth_oracle_price_update: Pubkey,
pub pyth_oracle_feed_id: Pubkey,
}
#[derive(Clone, Debug, Default)]
pub struct UpdateVaultBuilder {
authority: Option<solana_pubkey::Pubkey>,
tuna_config: Option<solana_pubkey::Pubkey>,
vault: Option<solana_pubkey::Pubkey>,
interest_rate: Option<u64>,
supply_limit: Option<u64>,
pyth_oracle_price_update: Option<Pubkey>,
pyth_oracle_feed_id: Option<Pubkey>,
__remaining_accounts: Vec<solana_instruction::AccountMeta>,
}
impl UpdateVaultBuilder {
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 vault(&mut self, vault: solana_pubkey::Pubkey) -> &mut Self {
self.vault = Some(vault);
self
}
#[inline(always)]
pub fn interest_rate(&mut self, interest_rate: u64) -> &mut Self {
self.interest_rate = Some(interest_rate);
self
}
#[inline(always)]
pub fn supply_limit(&mut self, supply_limit: u64) -> &mut Self {
self.supply_limit = Some(supply_limit);
self
}
#[inline(always)]
pub fn pyth_oracle_price_update(&mut self, pyth_oracle_price_update: Pubkey) -> &mut Self {
self.pyth_oracle_price_update = Some(pyth_oracle_price_update);
self
}
#[inline(always)]
pub fn pyth_oracle_feed_id(&mut self, pyth_oracle_feed_id: Pubkey) -> &mut Self {
self.pyth_oracle_feed_id = Some(pyth_oracle_feed_id);
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 = UpdateVault {
authority: self.authority.expect("authority is not set"),
tuna_config: self.tuna_config.expect("tuna_config is not set"),
vault: self.vault.expect("vault is not set"),
};
let args = UpdateVaultInstructionArgs {
interest_rate: self.interest_rate.clone().expect("interest_rate is not set"),
supply_limit: self.supply_limit.clone().expect("supply_limit is not set"),
pyth_oracle_price_update: self.pyth_oracle_price_update.clone().expect("pyth_oracle_price_update is not set"),
pyth_oracle_feed_id: self.pyth_oracle_feed_id.clone().expect("pyth_oracle_feed_id is not set"),
};
accounts.instruction_with_remaining_accounts(args, &self.__remaining_accounts)
}
}
pub struct UpdateVaultCpiAccounts<'a, 'b> {
pub authority: &'b solana_account_info::AccountInfo<'a>,
pub tuna_config: &'b solana_account_info::AccountInfo<'a>,
pub vault: &'b solana_account_info::AccountInfo<'a>,
}
pub struct UpdateVaultCpi<'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 vault: &'b solana_account_info::AccountInfo<'a>,
pub __args: UpdateVaultInstructionArgs,
}
impl<'a, 'b> UpdateVaultCpi<'a, 'b> {
pub fn new(
program: &'b solana_account_info::AccountInfo<'a>,
accounts: UpdateVaultCpiAccounts<'a, 'b>,
args: UpdateVaultInstructionArgs,
) -> Self {
Self {
__program: program,
authority: accounts.authority,
tuna_config: accounts.tuna_config,
vault: accounts.vault,
__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(3+ remaining_accounts.len());
accounts.push(solana_instruction::AccountMeta::new(
*self.authority.key,
true
));
accounts.push(solana_instruction::AccountMeta::new_readonly(
*self.tuna_config.key,
false
));
accounts.push(solana_instruction::AccountMeta::new(
*self.vault.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(&UpdateVaultInstructionData::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(4 + remaining_accounts.len());
account_infos.push(self.__program.clone());
account_infos.push(self.authority.clone());
account_infos.push(self.tuna_config.clone());
account_infos.push(self.vault.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 UpdateVaultCpiBuilder<'a, 'b> {
instruction: Box<UpdateVaultCpiBuilderInstruction<'a, 'b>>,
}
impl<'a, 'b> UpdateVaultCpiBuilder<'a, 'b> {
pub fn new(program: &'b solana_account_info::AccountInfo<'a>) -> Self {
let instruction = Box::new(UpdateVaultCpiBuilderInstruction {
__program: program,
authority: None,
tuna_config: None,
vault: None,
interest_rate: None,
supply_limit: None,
pyth_oracle_price_update: None,
pyth_oracle_feed_id: 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 vault(&mut self, vault: &'b solana_account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.vault = Some(vault);
self
}
#[inline(always)]
pub fn interest_rate(&mut self, interest_rate: u64) -> &mut Self {
self.instruction.interest_rate = Some(interest_rate);
self
}
#[inline(always)]
pub fn supply_limit(&mut self, supply_limit: u64) -> &mut Self {
self.instruction.supply_limit = Some(supply_limit);
self
}
#[inline(always)]
pub fn pyth_oracle_price_update(&mut self, pyth_oracle_price_update: Pubkey) -> &mut Self {
self.instruction.pyth_oracle_price_update = Some(pyth_oracle_price_update);
self
}
#[inline(always)]
pub fn pyth_oracle_feed_id(&mut self, pyth_oracle_feed_id: Pubkey) -> &mut Self {
self.instruction.pyth_oracle_feed_id = Some(pyth_oracle_feed_id);
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 = UpdateVaultInstructionArgs {
interest_rate: self.instruction.interest_rate.clone().expect("interest_rate is not set"),
supply_limit: self.instruction.supply_limit.clone().expect("supply_limit is not set"),
pyth_oracle_price_update: self.instruction.pyth_oracle_price_update.clone().expect("pyth_oracle_price_update is not set"),
pyth_oracle_feed_id: self.instruction.pyth_oracle_feed_id.clone().expect("pyth_oracle_feed_id is not set"),
};
let instruction = UpdateVaultCpi {
__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"),
vault: self.instruction.vault.expect("vault is not set"),
__args: args,
};
instruction.invoke_signed_with_remaining_accounts(signers_seeds, &self.instruction.__remaining_accounts)
}
}
#[derive(Clone, Debug)]
struct UpdateVaultCpiBuilderInstruction<'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>>,
vault: Option<&'b solana_account_info::AccountInfo<'a>>,
interest_rate: Option<u64>,
supply_limit: Option<u64>,
pyth_oracle_price_update: Option<Pubkey>,
pyth_oracle_feed_id: Option<Pubkey>,
__remaining_accounts: Vec<(&'b solana_account_info::AccountInfo<'a>, bool, bool)>,
}