use borsh::BorshDeserialize;
use borsh::BorshSerialize;
pub struct CreateNonce {
pub user: solana_program::pubkey::Pubkey,
pub nonce: solana_program::pubkey::Pubkey,
pub system_program: solana_program::pubkey::Pubkey,
}
impl CreateNonce {
pub fn instruction(
&self,
args: CreateNonceInstructionArgs,
) -> solana_program::instruction::Instruction {
self.instruction_with_remaining_accounts(args, &[])
}
#[allow(clippy::vec_init_then_push)]
pub fn instruction_with_remaining_accounts(
&self,
args: CreateNonceInstructionArgs,
remaining_accounts: &[solana_program::instruction::AccountMeta],
) -> solana_program::instruction::Instruction {
let mut accounts = Vec::with_capacity(3 + remaining_accounts.len());
accounts.push(solana_program::instruction::AccountMeta::new(
self.user, true,
));
accounts.push(solana_program::instruction::AccountMeta::new(
self.nonce, false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
self.system_program,
false,
));
accounts.extend_from_slice(remaining_accounts);
let mut data = CreateNonceInstructionData::new().try_to_vec().unwrap();
let mut args = args.try_to_vec().unwrap();
data.append(&mut args);
solana_program::instruction::Instruction {
program_id: crate::UNO_ID,
accounts,
data,
}
}
}
#[derive(BorshDeserialize, BorshSerialize)]
struct CreateNonceInstructionData {
discriminator: u8,
}
impl CreateNonceInstructionData {
fn new() -> Self {
Self { discriminator: 0 }
}
}
#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct CreateNonceInstructionArgs {
pub guid: [u8; 16],
}
#[derive(Default)]
pub struct CreateNonceBuilder {
user: Option<solana_program::pubkey::Pubkey>,
nonce: Option<solana_program::pubkey::Pubkey>,
system_program: Option<solana_program::pubkey::Pubkey>,
guid: Option<[u8; 16]>,
__remaining_accounts: Vec<solana_program::instruction::AccountMeta>,
}
impl CreateNonceBuilder {
pub fn new() -> Self {
Self::default()
}
#[inline(always)]
pub fn user(&mut self, user: solana_program::pubkey::Pubkey) -> &mut Self {
self.user = Some(user);
self
}
#[inline(always)]
pub fn nonce(&mut self, nonce: solana_program::pubkey::Pubkey) -> &mut Self {
self.nonce = Some(nonce);
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 guid(&mut self, guid: [u8; 16]) -> &mut Self {
self.guid = Some(guid);
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 = CreateNonce {
user: self.user.expect("user is not set"),
nonce: self.nonce.expect("nonce is not set"),
system_program: self
.system_program
.unwrap_or(solana_program::pubkey!("11111111111111111111111111111111")),
};
let args = CreateNonceInstructionArgs {
guid: self.guid.clone().expect("guid is not set"),
};
accounts.instruction_with_remaining_accounts(args, &self.__remaining_accounts)
}
}
pub struct CreateNonceCpiAccounts<'a, 'b> {
pub user: &'b solana_program::account_info::AccountInfo<'a>,
pub nonce: &'b solana_program::account_info::AccountInfo<'a>,
pub system_program: &'b solana_program::account_info::AccountInfo<'a>,
}
pub struct CreateNonceCpi<'a, 'b> {
pub __program: &'b solana_program::account_info::AccountInfo<'a>,
pub user: &'b solana_program::account_info::AccountInfo<'a>,
pub nonce: &'b solana_program::account_info::AccountInfo<'a>,
pub system_program: &'b solana_program::account_info::AccountInfo<'a>,
pub __args: CreateNonceInstructionArgs,
}
impl<'a, 'b> CreateNonceCpi<'a, 'b> {
pub fn new(
program: &'b solana_program::account_info::AccountInfo<'a>,
accounts: CreateNonceCpiAccounts<'a, 'b>,
args: CreateNonceInstructionArgs,
) -> Self {
Self {
__program: program,
user: accounts.user,
nonce: accounts.nonce,
system_program: accounts.system_program,
__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(3 + remaining_accounts.len());
accounts.push(solana_program::instruction::AccountMeta::new(
*self.user.key,
true,
));
accounts.push(solana_program::instruction::AccountMeta::new(
*self.nonce.key,
false,
));
accounts.push(solana_program::instruction::AccountMeta::new_readonly(
*self.system_program.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 = CreateNonceInstructionData::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::UNO_ID,
accounts,
data,
};
let mut account_infos = Vec::with_capacity(3 + 1 + remaining_accounts.len());
account_infos.push(self.__program.clone());
account_infos.push(self.user.clone());
account_infos.push(self.nonce.clone());
account_infos.push(self.system_program.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 CreateNonceCpiBuilder<'a, 'b> {
instruction: Box<CreateNonceCpiBuilderInstruction<'a, 'b>>,
}
impl<'a, 'b> CreateNonceCpiBuilder<'a, 'b> {
pub fn new(program: &'b solana_program::account_info::AccountInfo<'a>) -> Self {
let instruction = Box::new(CreateNonceCpiBuilderInstruction {
__program: program,
user: None,
nonce: None,
system_program: None,
guid: None,
__remaining_accounts: Vec::new(),
});
Self { instruction }
}
#[inline(always)]
pub fn user(&mut self, user: &'b solana_program::account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.user = Some(user);
self
}
#[inline(always)]
pub fn nonce(&mut self, nonce: &'b solana_program::account_info::AccountInfo<'a>) -> &mut Self {
self.instruction.nonce = Some(nonce);
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 guid(&mut self, guid: [u8; 16]) -> &mut Self {
self.instruction.guid = Some(guid);
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 = CreateNonceInstructionArgs {
guid: self.instruction.guid.clone().expect("guid is not set"),
};
let instruction = CreateNonceCpi {
__program: self.instruction.__program,
user: self.instruction.user.expect("user is not set"),
nonce: self.instruction.nonce.expect("nonce is not set"),
system_program: self
.instruction
.system_program
.expect("system_program is not set"),
__args: args,
};
instruction.invoke_signed_with_remaining_accounts(
signers_seeds,
&self.instruction.__remaining_accounts,
)
}
}
struct CreateNonceCpiBuilderInstruction<'a, 'b> {
__program: &'b solana_program::account_info::AccountInfo<'a>,
user: Option<&'b solana_program::account_info::AccountInfo<'a>>,
nonce: Option<&'b solana_program::account_info::AccountInfo<'a>>,
system_program: Option<&'b solana_program::account_info::AccountInfo<'a>>,
guid: Option<[u8; 16]>,
__remaining_accounts: Vec<(
&'b solana_program::account_info::AccountInfo<'a>,
bool,
bool,
)>,
}