use crate::generated::types::PaymentFeedType;
use borsh::BorshDeserialize;
use borsh::BorshSerialize;
pub struct InitializeBond {
pub delegate_account: solana_program::pubkey::Pubkey,
pub delegate_wallet: solana_program::pubkey::Pubkey,
pub bond_account: solana_program::pubkey::Pubkey,
pub mint_account: solana_program::pubkey::Pubkey,
pub metadata_account: solana_program::pubkey::Pubkey,
pub token2022_program: solana_program::pubkey::Pubkey,
pub metadata_program: solana_program::pubkey::Pubkey,
pub system_program: solana_program::pubkey::Pubkey,
pub sysvar_instructions: solana_program::pubkey::Pubkey,
}
impl InitializeBond {
pub fn instruction(
&self,
args: InitializeBondInstructionArgs,
) -> solana_program::instruction::Instruction {
self.instruction_with_remaining_accounts(args, &[])
}
#[allow(clippy::vec_init_then_push)]
pub fn instruction_with_remaining_accounts(
&self,
args: InitializeBondInstructionArgs,
remaining_accounts: &[solana_program::instruction::AccountMeta],
) -> solana_program::instruction::Instruction {
let mut accounts = Vec::with_capacity(9 + remaining_accounts.len());
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.delegate_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.delegate_wallet,
true,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.bond_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.mint_account,
true,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.metadata_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.token2022_program,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.metadata_program,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.system_program,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.sysvar_instructions,
false,
));
accounts.extend_from_slice(remaining_accounts);
let mut data = InitializeBondInstructionData::new().try_to_vec().unwrap();
let mut args = args.try_to_vec().unwrap();
data.append(&mut args);
solana_program::instruction::Instruction {
program_id: crate::STABLEBOND_ID,
accounts,
data,
}
}
}
#[derive(BorshDeserialize, BorshSerialize)]
struct InitializeBondInstructionData {
discriminator: u8,
}
impl InitializeBondInstructionData {
fn new() -> Self {
Self { discriminator: 2 }
}
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct InitializeBondInstructionArgs {
pub name: String,
pub symbol: String,
pub uri: String,
pub payment_feed_type: PaymentFeedType,
pub cutoff_in_seconds: i64,
}
#[derive(Default)]
pub struct InitializeBondBuilder {
delegate_account: Option<solana_program::pubkey::Pubkey>,
delegate_wallet: Option<solana_program::pubkey::Pubkey>,
bond_account: Option<solana_program::pubkey::Pubkey>,
mint_account: Option<solana_program::pubkey::Pubkey>,
metadata_account: Option<solana_program::pubkey::Pubkey>,
token2022_program: Option<solana_program::pubkey::Pubkey>,
metadata_program: Option<solana_program::pubkey::Pubkey>,
system_program: Option<solana_program::pubkey::Pubkey>,
sysvar_instructions: Option<solana_program::pubkey::Pubkey>,
name: Option<String>,
symbol: Option<String>,
uri: Option<String>,
payment_feed_type: Option<PaymentFeedType>,
cutoff_in_seconds: Option<i64>,
__remaining_accounts: Vec<solana_program::instruction::AccountMeta>,
}
impl InitializeBondBuilder {
pub fn new() -> Self {
Self::default()
}
#[inline(always)]
pub fn delegate_account(
&mut self,
delegate_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.delegate_account = Some(delegate_account);
self
}
#[inline(always)]
pub fn delegate_wallet(
&mut self,
delegate_wallet: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.delegate_wallet = Some(delegate_wallet);
self
}
#[inline(always)]
pub fn bond_account(&mut self, bond_account: solana_program::pubkey::Pubkey) -> &mut Self {
self.bond_account = Some(bond_account);
self
}
#[inline(always)]
pub fn mint_account(&mut self, mint_account: solana_program::pubkey::Pubkey) -> &mut Self {
self.mint_account = Some(mint_account);
self
}
#[inline(always)]
pub fn metadata_account(
&mut self,
metadata_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.metadata_account = Some(metadata_account);
self
}
#[inline(always)]
pub fn token2022_program(
&mut self,
token2022_program: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.token2022_program = Some(token2022_program);
self
}
#[inline(always)]
pub fn metadata_program(
&mut self,
metadata_program: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.metadata_program = Some(metadata_program);
self
}
#[inline(always)]
pub fn system_program(&mut self, system_program: solana_program::pubkey::Pubkey) -> &mut Self {
self.system_program = Some(system_program);
self
}
#[inline(always)]
pub fn sysvar_instructions(
&mut self,
sysvar_instructions: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.sysvar_instructions = Some(sysvar_instructions);
self
}
#[inline(always)]
pub fn name(&mut self, name: String) -> &mut Self {
self.name = Some(name);
self
}
#[inline(always)]
pub fn symbol(&mut self, symbol: String) -> &mut Self {
self.symbol = Some(symbol);
self
}
#[inline(always)]
pub fn uri(&mut self, uri: String) -> &mut Self {
self.uri = Some(uri);
self
}
#[inline(always)]
pub fn payment_feed_type(&mut self, payment_feed_type: PaymentFeedType) -> &mut Self {
self.payment_feed_type = Some(payment_feed_type);
self
}
#[inline(always)]
pub fn cutoff_in_seconds(&mut self, cutoff_in_seconds: i64) -> &mut Self {
self.cutoff_in_seconds = Some(cutoff_in_seconds);
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 = InitializeBond {
delegate_account: self.delegate_account.expect("delegate_account is not set"),
delegate_wallet: self.delegate_wallet.expect("delegate_wallet is not set"),
bond_account: self.bond_account.expect("bond_account is not set"),
mint_account: self.mint_account.expect("mint_account is not set"),
metadata_account: self.metadata_account.expect("metadata_account is not set"),
token2022_program: self
.token2022_program
.expect("token2022_program is not set"),
metadata_program: self.metadata_program.expect("metadata_program is not set"),
system_program: self
.system_program
.unwrap_or(solana_program::pubkey!("11111111111111111111111111111111")),
sysvar_instructions: self.sysvar_instructions.unwrap_or(solana_program::pubkey!(
"Sysvar1nstructions1111111111111111111111111"
)),
};
let args = InitializeBondInstructionArgs {
name: self.name.clone().expect("name is not set"),
symbol: self.symbol.clone().expect("symbol is not set"),
uri: self.uri.clone().expect("uri is not set"),
payment_feed_type: self
.payment_feed_type
.clone()
.expect("payment_feed_type is not set"),
cutoff_in_seconds: self
.cutoff_in_seconds
.clone()
.expect("cutoff_in_seconds is not set"),
};
accounts.instruction_with_remaining_accounts(args, &self.__remaining_accounts)
}
}
pub struct InitializeBondCpiAccounts<'a, 'b> {
pub delegate_account: &'b solana_program::account_info::AccountInfo<'a>,
pub delegate_wallet: &'b solana_program::account_info::AccountInfo<'a>,
pub bond_account: &'b solana_program::account_info::AccountInfo<'a>,
pub mint_account: &'b solana_program::account_info::AccountInfo<'a>,
pub metadata_account: &'b solana_program::account_info::AccountInfo<'a>,
pub token2022_program: &'b solana_program::account_info::AccountInfo<'a>,
pub metadata_program: &'b solana_program::account_info::AccountInfo<'a>,
pub system_program: &'b solana_program::account_info::AccountInfo<'a>,
pub sysvar_instructions: &'b solana_program::account_info::AccountInfo<'a>,
}
pub struct InitializeBondCpi<'a, 'b> {
pub __program: &'b solana_program::account_info::AccountInfo<'a>,
pub delegate_account: &'b solana_program::account_info::AccountInfo<'a>,
pub delegate_wallet: &'b solana_program::account_info::AccountInfo<'a>,
pub bond_account: &'b solana_program::account_info::AccountInfo<'a>,
pub mint_account: &'b solana_program::account_info::AccountInfo<'a>,
pub metadata_account: &'b solana_program::account_info::AccountInfo<'a>,
pub token2022_program: &'b solana_program::account_info::AccountInfo<'a>,
pub metadata_program: &'b solana_program::account_info::AccountInfo<'a>,
pub system_program: &'b solana_program::account_info::AccountInfo<'a>,
pub sysvar_instructions: &'b solana_program::account_info::AccountInfo<'a>,
pub __args: InitializeBondInstructionArgs,
}
impl<'a, 'b> InitializeBondCpi<'a, 'b> {
pub fn new(
program: &'b solana_program::account_info::AccountInfo<'a>,
accounts: InitializeBondCpiAccounts<'a, 'b>,
args: InitializeBondInstructionArgs,
) -> Self {
Self {
__program: program,
delegate_account: accounts.delegate_account,
delegate_wallet: accounts.delegate_wallet,
bond_account: accounts.bond_account,
mint_account: accounts.mint_account,
metadata_account: accounts.metadata_account,
token2022_program: accounts.token2022_program,
metadata_program: accounts.metadata_program,
system_program: accounts.system_program,
sysvar_instructions: accounts.sysvar_instructions,
__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(9 + remaining_accounts.len());
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.delegate_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.delegate_wallet.key,
true,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.bond_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.mint_account.key,
true,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.metadata_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.token2022_program.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.metadata_program.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.system_program.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.sysvar_instructions.key,
false,
));
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 = InitializeBondInstructionData::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::STABLEBOND_ID,
accounts,
data,
};
let mut account_infos = Vec::with_capacity(9 + 1 + remaining_accounts.len());
account_infos.push(self.__program.clone());
account_infos.push(self.delegate_account.clone());
account_infos.push(self.delegate_wallet.clone());
account_infos.push(self.bond_account.clone());
account_infos.push(self.mint_account.clone());
account_infos.push(self.metadata_account.clone());
account_infos.push(self.token2022_program.clone());
account_infos.push(self.metadata_program.clone());
account_infos.push(self.system_program.clone());
account_infos.push(self.sysvar_instructions.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)
}
}
}
pub struct InitializeBondCpiBuilder<'a, 'b> {
instruction: Box<InitializeBondCpiBuilderInstruction<'a, 'b>>,
}
impl<'a, 'b> InitializeBondCpiBuilder<'a, 'b> {
pub fn new(program: &'b solana_program::account_info::AccountInfo<'a>) -> Self {
let instruction = Box::new(InitializeBondCpiBuilderInstruction {
__program: program,
delegate_account: None,
delegate_wallet: None,
bond_account: None,
mint_account: None,
metadata_account: None,
token2022_program: None,
metadata_program: None,
system_program: None,
sysvar_instructions: None,
name: None,
symbol: None,
uri: None,
payment_feed_type: None,
cutoff_in_seconds: None,
__remaining_accounts: Vec::new(),
});
Self { instruction }
}
#[inline(always)]
pub fn delegate_account(
&mut self,
delegate_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.delegate_account = Some(delegate_account);
self
}
#[inline(always)]
pub fn delegate_wallet(
&mut self,
delegate_wallet: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.delegate_wallet = Some(delegate_wallet);
self
}
#[inline(always)]
pub fn bond_account(
&mut self,
bond_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.bond_account = Some(bond_account);
self
}
#[inline(always)]
pub fn mint_account(
&mut self,
mint_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.mint_account = Some(mint_account);
self
}
#[inline(always)]
pub fn metadata_account(
&mut self,
metadata_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.metadata_account = Some(metadata_account);
self
}
#[inline(always)]
pub fn token2022_program(
&mut self,
token2022_program: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.token2022_program = Some(token2022_program);
self
}
#[inline(always)]
pub fn metadata_program(
&mut self,
metadata_program: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.metadata_program = Some(metadata_program);
self
}
#[inline(always)]
pub fn system_program(
&mut self,
system_program: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.system_program = Some(system_program);
self
}
#[inline(always)]
pub fn sysvar_instructions(
&mut self,
sysvar_instructions: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.sysvar_instructions = Some(sysvar_instructions);
self
}
#[inline(always)]
pub fn name(&mut self, name: String) -> &mut Self {
self.instruction.name = Some(name);
self
}
#[inline(always)]
pub fn symbol(&mut self, symbol: String) -> &mut Self {
self.instruction.symbol = Some(symbol);
self
}
#[inline(always)]
pub fn uri(&mut self, uri: String) -> &mut Self {
self.instruction.uri = Some(uri);
self
}
#[inline(always)]
pub fn payment_feed_type(&mut self, payment_feed_type: PaymentFeedType) -> &mut Self {
self.instruction.payment_feed_type = Some(payment_feed_type);
self
}
#[inline(always)]
pub fn cutoff_in_seconds(&mut self, cutoff_in_seconds: i64) -> &mut Self {
self.instruction.cutoff_in_seconds = Some(cutoff_in_seconds);
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 = InitializeBondInstructionArgs {
name: self.instruction.name.clone().expect("name is not set"),
symbol: self.instruction.symbol.clone().expect("symbol is not set"),
uri: self.instruction.uri.clone().expect("uri is not set"),
payment_feed_type: self
.instruction
.payment_feed_type
.clone()
.expect("payment_feed_type is not set"),
cutoff_in_seconds: self
.instruction
.cutoff_in_seconds
.clone()
.expect("cutoff_in_seconds is not set"),
};
let instruction = InitializeBondCpi {
__program: self.instruction.__program,
delegate_account: self
.instruction
.delegate_account
.expect("delegate_account is not set"),
delegate_wallet: self
.instruction
.delegate_wallet
.expect("delegate_wallet is not set"),
bond_account: self
.instruction
.bond_account
.expect("bond_account is not set"),
mint_account: self
.instruction
.mint_account
.expect("mint_account is not set"),
metadata_account: self
.instruction
.metadata_account
.expect("metadata_account is not set"),
token2022_program: self
.instruction
.token2022_program
.expect("token2022_program is not set"),
metadata_program: self
.instruction
.metadata_program
.expect("metadata_program is not set"),
system_program: self
.instruction
.system_program
.expect("system_program is not set"),
sysvar_instructions: self
.instruction
.sysvar_instructions
.expect("sysvar_instructions is not set"),
__args: args,
};
instruction.invoke_signed_with_remaining_accounts(
signers_seeds,
&self.instruction.__remaining_accounts,
)
}
}
struct InitializeBondCpiBuilderInstruction<'a, 'b> {
__program: &'b solana_program::account_info::AccountInfo<'a>,
delegate_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
delegate_wallet: Option<&'b solana_program::account_info::AccountInfo<'a>>,
bond_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
mint_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
metadata_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
token2022_program: Option<&'b solana_program::account_info::AccountInfo<'a>>,
metadata_program: Option<&'b solana_program::account_info::AccountInfo<'a>>,
system_program: Option<&'b solana_program::account_info::AccountInfo<'a>>,
sysvar_instructions: Option<&'b solana_program::account_info::AccountInfo<'a>>,
name: Option<String>,
symbol: Option<String>,
uri: Option<String>,
payment_feed_type: Option<PaymentFeedType>,
cutoff_in_seconds: Option<i64>,
__remaining_accounts: Vec<(
&'b solana_program::account_info::AccountInfo<'a>,
bool,
bool,
)>,
}