use borsh::BorshDeserialize;
use borsh::BorshSerialize;
pub struct InitializeIssuance {
pub delegate_account: solana_program::pubkey::Pubkey,
pub delegate_wallet: solana_program::pubkey::Pubkey,
pub bond_account: solana_program::pubkey::Pubkey,
pub upcoming_issuance_account: solana_program::pubkey::Pubkey,
pub payment_feed_account: solana_program::pubkey::Pubkey,
pub payment_mint_account: solana_program::pubkey::Pubkey,
pub payment_account: solana_program::pubkey::Pubkey,
pub payment_token_account: solana_program::pubkey::Pubkey,
pub payout_account: solana_program::pubkey::Pubkey,
pub payout_token_account: solana_program::pubkey::Pubkey,
pub associated_token_program: solana_program::pubkey::Pubkey,
pub token_program: solana_program::pubkey::Pubkey,
pub system_program: solana_program::pubkey::Pubkey,
pub current_issuance_account: Option<solana_program::pubkey::Pubkey>,
}
impl InitializeIssuance {
pub fn instruction(
&self,
args: InitializeIssuanceInstructionArgs,
) -> solana_program::instruction::Instruction {
self.instruction_with_remaining_accounts(args, &[])
}
#[allow(clippy::vec_init_then_push)]
pub fn instruction_with_remaining_accounts(
&self,
args: InitializeIssuanceInstructionArgs,
remaining_accounts: &[solana_program::instruction::AccountMeta],
) -> solana_program::instruction::Instruction {
let mut accounts = Vec::with_capacity(14 + 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_readonly(
self.bond_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.upcoming_issuance_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.payment_feed_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.payment_mint_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.payment_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.payment_token_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.payout_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.payout_token_account,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.associated_token_program,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.token_program,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.system_program,
false,
));
if let Some(current_issuance_account) = self.current_issuance_account {
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
current_issuance_account,
false,
));
} else {
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
crate::STABLEBOND_ID,
false,
));
}
accounts.extend_from_slice(remaining_accounts);
let mut data = InitializeIssuanceInstructionData::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 InitializeIssuanceInstructionData {
discriminator: u8,
}
impl InitializeIssuanceInstructionData {
fn new() -> Self {
Self { discriminator: 3 }
}
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct InitializeIssuanceInstructionArgs {
pub liquidity: u64,
pub interest_rate_bps: i16,
pub estimated_start_datetime: i64,
pub length_in_seconds: i64,
}
#[derive(Default)]
pub struct InitializeIssuanceBuilder {
delegate_account: Option<solana_program::pubkey::Pubkey>,
delegate_wallet: Option<solana_program::pubkey::Pubkey>,
bond_account: Option<solana_program::pubkey::Pubkey>,
upcoming_issuance_account: Option<solana_program::pubkey::Pubkey>,
payment_feed_account: Option<solana_program::pubkey::Pubkey>,
payment_mint_account: Option<solana_program::pubkey::Pubkey>,
payment_account: Option<solana_program::pubkey::Pubkey>,
payment_token_account: Option<solana_program::pubkey::Pubkey>,
payout_account: Option<solana_program::pubkey::Pubkey>,
payout_token_account: Option<solana_program::pubkey::Pubkey>,
associated_token_program: Option<solana_program::pubkey::Pubkey>,
token_program: Option<solana_program::pubkey::Pubkey>,
system_program: Option<solana_program::pubkey::Pubkey>,
current_issuance_account: Option<solana_program::pubkey::Pubkey>,
liquidity: Option<u64>,
interest_rate_bps: Option<i16>,
estimated_start_datetime: Option<i64>,
length_in_seconds: Option<i64>,
__remaining_accounts: Vec<solana_program::instruction::AccountMeta>,
}
impl InitializeIssuanceBuilder {
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 upcoming_issuance_account(
&mut self,
upcoming_issuance_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.upcoming_issuance_account = Some(upcoming_issuance_account);
self
}
#[inline(always)]
pub fn payment_feed_account(
&mut self,
payment_feed_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.payment_feed_account = Some(payment_feed_account);
self
}
#[inline(always)]
pub fn payment_mint_account(
&mut self,
payment_mint_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.payment_mint_account = Some(payment_mint_account);
self
}
#[inline(always)]
pub fn payment_account(
&mut self,
payment_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.payment_account = Some(payment_account);
self
}
#[inline(always)]
pub fn payment_token_account(
&mut self,
payment_token_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.payment_token_account = Some(payment_token_account);
self
}
#[inline(always)]
pub fn payout_account(&mut self, payout_account: solana_program::pubkey::Pubkey) -> &mut Self {
self.payout_account = Some(payout_account);
self
}
#[inline(always)]
pub fn payout_token_account(
&mut self,
payout_token_account: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.payout_token_account = Some(payout_token_account);
self
}
#[inline(always)]
pub fn associated_token_program(
&mut self,
associated_token_program: solana_program::pubkey::Pubkey,
) -> &mut Self {
self.associated_token_program = Some(associated_token_program);
self
}
#[inline(always)]
pub fn token_program(&mut self, token_program: solana_program::pubkey::Pubkey) -> &mut Self {
self.token_program = Some(token_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 current_issuance_account(
&mut self,
current_issuance_account: Option<solana_program::pubkey::Pubkey>,
) -> &mut Self {
self.current_issuance_account = current_issuance_account;
self
}
#[inline(always)]
pub fn liquidity(&mut self, liquidity: u64) -> &mut Self {
self.liquidity = Some(liquidity);
self
}
#[inline(always)]
pub fn interest_rate_bps(&mut self, interest_rate_bps: i16) -> &mut Self {
self.interest_rate_bps = Some(interest_rate_bps);
self
}
#[inline(always)]
pub fn estimated_start_datetime(&mut self, estimated_start_datetime: i64) -> &mut Self {
self.estimated_start_datetime = Some(estimated_start_datetime);
self
}
#[inline(always)]
pub fn length_in_seconds(&mut self, length_in_seconds: i64) -> &mut Self {
self.length_in_seconds = Some(length_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 = InitializeIssuance {
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"),
upcoming_issuance_account: self
.upcoming_issuance_account
.expect("upcoming_issuance_account is not set"),
payment_feed_account: self
.payment_feed_account
.expect("payment_feed_account is not set"),
payment_mint_account: self
.payment_mint_account
.expect("payment_mint_account is not set"),
payment_account: self.payment_account.expect("payment_account is not set"),
payment_token_account: self
.payment_token_account
.expect("payment_token_account is not set"),
payout_account: self.payout_account.expect("payout_account is not set"),
payout_token_account: self
.payout_token_account
.expect("payout_token_account is not set"),
associated_token_program: self
.associated_token_program
.expect("associated_token_program is not set"),
token_program: self.token_program.unwrap_or(solana_program::pubkey!(
"TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
)),
system_program: self
.system_program
.unwrap_or(solana_program::pubkey!("11111111111111111111111111111111")),
current_issuance_account: self.current_issuance_account,
};
let args = InitializeIssuanceInstructionArgs {
liquidity: self.liquidity.clone().expect("liquidity is not set"),
interest_rate_bps: self
.interest_rate_bps
.clone()
.expect("interest_rate_bps is not set"),
estimated_start_datetime: self
.estimated_start_datetime
.clone()
.expect("estimated_start_datetime is not set"),
length_in_seconds: self
.length_in_seconds
.clone()
.expect("length_in_seconds is not set"),
};
accounts.instruction_with_remaining_accounts(args, &self.__remaining_accounts)
}
}
pub struct InitializeIssuanceCpiAccounts<'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 upcoming_issuance_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_feed_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_mint_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_token_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payout_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payout_token_account: &'b solana_program::account_info::AccountInfo<'a>,
pub associated_token_program: &'b solana_program::account_info::AccountInfo<'a>,
pub token_program: &'b solana_program::account_info::AccountInfo<'a>,
pub system_program: &'b solana_program::account_info::AccountInfo<'a>,
pub current_issuance_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
}
pub struct InitializeIssuanceCpi<'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 upcoming_issuance_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_feed_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_mint_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payment_token_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payout_account: &'b solana_program::account_info::AccountInfo<'a>,
pub payout_token_account: &'b solana_program::account_info::AccountInfo<'a>,
pub associated_token_program: &'b solana_program::account_info::AccountInfo<'a>,
pub token_program: &'b solana_program::account_info::AccountInfo<'a>,
pub system_program: &'b solana_program::account_info::AccountInfo<'a>,
pub current_issuance_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
pub __args: InitializeIssuanceInstructionArgs,
}
impl<'a, 'b> InitializeIssuanceCpi<'a, 'b> {
pub fn new(
program: &'b solana_program::account_info::AccountInfo<'a>,
accounts: InitializeIssuanceCpiAccounts<'a, 'b>,
args: InitializeIssuanceInstructionArgs,
) -> Self {
Self {
__program: program,
delegate_account: accounts.delegate_account,
delegate_wallet: accounts.delegate_wallet,
bond_account: accounts.bond_account,
upcoming_issuance_account: accounts.upcoming_issuance_account,
payment_feed_account: accounts.payment_feed_account,
payment_mint_account: accounts.payment_mint_account,
payment_account: accounts.payment_account,
payment_token_account: accounts.payment_token_account,
payout_account: accounts.payout_account,
payout_token_account: accounts.payout_token_account,
associated_token_program: accounts.associated_token_program,
token_program: accounts.token_program,
system_program: accounts.system_program,
current_issuance_account: accounts.current_issuance_account,
__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(14 + 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_readonly(
*self.bond_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.upcoming_issuance_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.payment_feed_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.payment_mint_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.payment_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.payment_token_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.payout_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.payout_token_account.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.associated_token_program.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.token_program.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.system_program.key,
false,
));
if let Some(current_issuance_account) = self.current_issuance_account {
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*current_issuance_account.key,
false,
));
} else {
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
crate::STABLEBOND_ID,
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 = InitializeIssuanceInstructionData::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(14 + 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.upcoming_issuance_account.clone());
account_infos.push(self.payment_feed_account.clone());
account_infos.push(self.payment_mint_account.clone());
account_infos.push(self.payment_account.clone());
account_infos.push(self.payment_token_account.clone());
account_infos.push(self.payout_account.clone());
account_infos.push(self.payout_token_account.clone());
account_infos.push(self.associated_token_program.clone());
account_infos.push(self.token_program.clone());
account_infos.push(self.system_program.clone());
if let Some(current_issuance_account) = self.current_issuance_account {
account_infos.push(current_issuance_account.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 InitializeIssuanceCpiBuilder<'a, 'b> {
instruction: Box<InitializeIssuanceCpiBuilderInstruction<'a, 'b>>,
}
impl<'a, 'b> InitializeIssuanceCpiBuilder<'a, 'b> {
pub fn new(program: &'b solana_program::account_info::AccountInfo<'a>) -> Self {
let instruction = Box::new(InitializeIssuanceCpiBuilderInstruction {
__program: program,
delegate_account: None,
delegate_wallet: None,
bond_account: None,
upcoming_issuance_account: None,
payment_feed_account: None,
payment_mint_account: None,
payment_account: None,
payment_token_account: None,
payout_account: None,
payout_token_account: None,
associated_token_program: None,
token_program: None,
system_program: None,
current_issuance_account: None,
liquidity: None,
interest_rate_bps: None,
estimated_start_datetime: None,
length_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 upcoming_issuance_account(
&mut self,
upcoming_issuance_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.upcoming_issuance_account = Some(upcoming_issuance_account);
self
}
#[inline(always)]
pub fn payment_feed_account(
&mut self,
payment_feed_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.payment_feed_account = Some(payment_feed_account);
self
}
#[inline(always)]
pub fn payment_mint_account(
&mut self,
payment_mint_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.payment_mint_account = Some(payment_mint_account);
self
}
#[inline(always)]
pub fn payment_account(
&mut self,
payment_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.payment_account = Some(payment_account);
self
}
#[inline(always)]
pub fn payment_token_account(
&mut self,
payment_token_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.payment_token_account = Some(payment_token_account);
self
}
#[inline(always)]
pub fn payout_account(
&mut self,
payout_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.payout_account = Some(payout_account);
self
}
#[inline(always)]
pub fn payout_token_account(
&mut self,
payout_token_account: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.payout_token_account = Some(payout_token_account);
self
}
#[inline(always)]
pub fn associated_token_program(
&mut self,
associated_token_program: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.associated_token_program = Some(associated_token_program);
self
}
#[inline(always)]
pub fn token_program(
&mut self,
token_program: &'b solana_program::account_info::AccountInfo<'a>,
) -> &mut Self {
self.instruction.token_program = Some(token_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 current_issuance_account(
&mut self,
current_issuance_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
) -> &mut Self {
self.instruction.current_issuance_account = current_issuance_account;
self
}
#[inline(always)]
pub fn liquidity(&mut self, liquidity: u64) -> &mut Self {
self.instruction.liquidity = Some(liquidity);
self
}
#[inline(always)]
pub fn interest_rate_bps(&mut self, interest_rate_bps: i16) -> &mut Self {
self.instruction.interest_rate_bps = Some(interest_rate_bps);
self
}
#[inline(always)]
pub fn estimated_start_datetime(&mut self, estimated_start_datetime: i64) -> &mut Self {
self.instruction.estimated_start_datetime = Some(estimated_start_datetime);
self
}
#[inline(always)]
pub fn length_in_seconds(&mut self, length_in_seconds: i64) -> &mut Self {
self.instruction.length_in_seconds = Some(length_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 = InitializeIssuanceInstructionArgs {
liquidity: self
.instruction
.liquidity
.clone()
.expect("liquidity is not set"),
interest_rate_bps: self
.instruction
.interest_rate_bps
.clone()
.expect("interest_rate_bps is not set"),
estimated_start_datetime: self
.instruction
.estimated_start_datetime
.clone()
.expect("estimated_start_datetime is not set"),
length_in_seconds: self
.instruction
.length_in_seconds
.clone()
.expect("length_in_seconds is not set"),
};
let instruction = InitializeIssuanceCpi {
__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"),
upcoming_issuance_account: self
.instruction
.upcoming_issuance_account
.expect("upcoming_issuance_account is not set"),
payment_feed_account: self
.instruction
.payment_feed_account
.expect("payment_feed_account is not set"),
payment_mint_account: self
.instruction
.payment_mint_account
.expect("payment_mint_account is not set"),
payment_account: self
.instruction
.payment_account
.expect("payment_account is not set"),
payment_token_account: self
.instruction
.payment_token_account
.expect("payment_token_account is not set"),
payout_account: self
.instruction
.payout_account
.expect("payout_account is not set"),
payout_token_account: self
.instruction
.payout_token_account
.expect("payout_token_account is not set"),
associated_token_program: self
.instruction
.associated_token_program
.expect("associated_token_program is not set"),
token_program: self
.instruction
.token_program
.expect("token_program is not set"),
system_program: self
.instruction
.system_program
.expect("system_program is not set"),
current_issuance_account: self.instruction.current_issuance_account,
__args: args,
};
instruction.invoke_signed_with_remaining_accounts(
signers_seeds,
&self.instruction.__remaining_accounts,
)
}
}
struct InitializeIssuanceCpiBuilderInstruction<'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>>,
upcoming_issuance_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
payment_feed_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
payment_mint_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
payment_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
payment_token_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
payout_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
payout_token_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
associated_token_program: Option<&'b solana_program::account_info::AccountInfo<'a>>,
token_program: Option<&'b solana_program::account_info::AccountInfo<'a>>,
system_program: Option<&'b solana_program::account_info::AccountInfo<'a>>,
current_issuance_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
liquidity: Option<u64>,
interest_rate_bps: Option<i16>,
estimated_start_datetime: Option<i64>,
length_in_seconds: Option<i64>,
__remaining_accounts: Vec<(
&'b solana_program::account_info::AccountInfo<'a>,
bool,
bool,
)>,
}