| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509 |
- //! This code was AUTOGENERATED using the kinobi library.
- //! Please DO NOT EDIT THIS FILE, instead use visitors
- //! to add features, then rerun kinobi to update it.
- //!
- //! [https://github.com/metaplex-foundation/kinobi]
- //!
- use borsh::BorshDeserialize;
- use borsh::BorshSerialize;
- /// Accounts.
- pub struct WithdrawNonceAccount {
- pub nonce_account: solana_program::pubkey::Pubkey,
- pub recipient_account: solana_program::pubkey::Pubkey,
- pub recent_blockhashes_sysvar: solana_program::pubkey::Pubkey,
- pub rent_sysvar: solana_program::pubkey::Pubkey,
- pub nonce_authority: solana_program::pubkey::Pubkey,
- }
- impl WithdrawNonceAccount {
- pub fn instruction(
- &self,
- args: WithdrawNonceAccountInstructionArgs,
- ) -> solana_program::instruction::Instruction {
- self.instruction_with_remaining_accounts(args, &[])
- }
- #[allow(clippy::vec_init_then_push)]
- pub fn instruction_with_remaining_accounts(
- &self,
- args: WithdrawNonceAccountInstructionArgs,
- remaining_accounts: &[solana_program::instruction::AccountMeta],
- ) -> solana_program::instruction::Instruction {
- let mut accounts = Vec::with_capacity(5 + remaining_accounts.len());
- accounts.push(solana_program::instruction::AccountMeta::new(
- self.nonce_account,
- false,
- ));
- accounts.push(solana_program::instruction::AccountMeta::new(
- self.recipient_account,
- false,
- ));
- accounts.push(solana_program::instruction::AccountMeta::new_readonly(
- self.recent_blockhashes_sysvar,
- false,
- ));
- accounts.push(solana_program::instruction::AccountMeta::new_readonly(
- self.rent_sysvar,
- false,
- ));
- accounts.push(solana_program::instruction::AccountMeta::new_readonly(
- self.nonce_authority,
- true,
- ));
- accounts.extend_from_slice(remaining_accounts);
- let mut data = WithdrawNonceAccountInstructionData::new()
- .try_to_vec()
- .unwrap();
- let mut args = args.try_to_vec().unwrap();
- data.append(&mut args);
- solana_program::instruction::Instruction {
- program_id: crate::SYSTEM_ID,
- accounts,
- data,
- }
- }
- }
- #[derive(BorshDeserialize, BorshSerialize)]
- pub struct WithdrawNonceAccountInstructionData {
- discriminator: u32,
- }
- impl WithdrawNonceAccountInstructionData {
- pub fn new() -> Self {
- Self { discriminator: 5 }
- }
- }
- #[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
- #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
- pub struct WithdrawNonceAccountInstructionArgs {
- pub withdraw_amount: u64,
- }
- /// Instruction builder for `WithdrawNonceAccount`.
- ///
- /// ### Accounts:
- ///
- /// 0. `[writable]` nonce_account
- /// 1. `[writable]` recipient_account
- /// 2. `[optional]` recent_blockhashes_sysvar (default to `SysvarRecentB1ockHashes11111111111111111111`)
- /// 3. `[optional]` rent_sysvar (default to `SysvarRent111111111111111111111111111111111`)
- /// 4. `[signer]` nonce_authority
- #[derive(Clone, Debug, Default)]
- pub struct WithdrawNonceAccountBuilder {
- nonce_account: Option<solana_program::pubkey::Pubkey>,
- recipient_account: Option<solana_program::pubkey::Pubkey>,
- recent_blockhashes_sysvar: Option<solana_program::pubkey::Pubkey>,
- rent_sysvar: Option<solana_program::pubkey::Pubkey>,
- nonce_authority: Option<solana_program::pubkey::Pubkey>,
- withdraw_amount: Option<u64>,
- __remaining_accounts: Vec<solana_program::instruction::AccountMeta>,
- }
- impl WithdrawNonceAccountBuilder {
- pub fn new() -> Self {
- Self::default()
- }
- #[inline(always)]
- pub fn nonce_account(&mut self, nonce_account: solana_program::pubkey::Pubkey) -> &mut Self {
- self.nonce_account = Some(nonce_account);
- self
- }
- #[inline(always)]
- pub fn recipient_account(
- &mut self,
- recipient_account: solana_program::pubkey::Pubkey,
- ) -> &mut Self {
- self.recipient_account = Some(recipient_account);
- self
- }
- /// `[optional account, default to 'SysvarRecentB1ockHashes11111111111111111111']`
- #[inline(always)]
- pub fn recent_blockhashes_sysvar(
- &mut self,
- recent_blockhashes_sysvar: solana_program::pubkey::Pubkey,
- ) -> &mut Self {
- self.recent_blockhashes_sysvar = Some(recent_blockhashes_sysvar);
- self
- }
- /// `[optional account, default to 'SysvarRent111111111111111111111111111111111']`
- #[inline(always)]
- pub fn rent_sysvar(&mut self, rent_sysvar: solana_program::pubkey::Pubkey) -> &mut Self {
- self.rent_sysvar = Some(rent_sysvar);
- self
- }
- #[inline(always)]
- pub fn nonce_authority(
- &mut self,
- nonce_authority: solana_program::pubkey::Pubkey,
- ) -> &mut Self {
- self.nonce_authority = Some(nonce_authority);
- self
- }
- #[inline(always)]
- pub fn withdraw_amount(&mut self, withdraw_amount: u64) -> &mut Self {
- self.withdraw_amount = Some(withdraw_amount);
- self
- }
- /// Add an aditional account to the instruction.
- #[inline(always)]
- pub fn add_remaining_account(
- &mut self,
- account: solana_program::instruction::AccountMeta,
- ) -> &mut Self {
- self.__remaining_accounts.push(account);
- self
- }
- /// Add additional accounts to the instruction.
- #[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 = WithdrawNonceAccount {
- nonce_account: self.nonce_account.expect("nonce_account is not set"),
- recipient_account: self
- .recipient_account
- .expect("recipient_account is not set"),
- recent_blockhashes_sysvar: self.recent_blockhashes_sysvar.unwrap_or(
- solana_program::pubkey!("SysvarRecentB1ockHashes11111111111111111111"),
- ),
- rent_sysvar: self.rent_sysvar.unwrap_or(solana_program::pubkey!(
- "SysvarRent111111111111111111111111111111111"
- )),
- nonce_authority: self.nonce_authority.expect("nonce_authority is not set"),
- };
- let args = WithdrawNonceAccountInstructionArgs {
- withdraw_amount: self
- .withdraw_amount
- .clone()
- .expect("withdraw_amount is not set"),
- };
- accounts.instruction_with_remaining_accounts(args, &self.__remaining_accounts)
- }
- }
- /// `withdraw_nonce_account` CPI accounts.
- pub struct WithdrawNonceAccountCpiAccounts<'a, 'b> {
- pub nonce_account: &'b solana_program::account_info::AccountInfo<'a>,
- pub recipient_account: &'b solana_program::account_info::AccountInfo<'a>,
- pub recent_blockhashes_sysvar: &'b solana_program::account_info::AccountInfo<'a>,
- pub rent_sysvar: &'b solana_program::account_info::AccountInfo<'a>,
- pub nonce_authority: &'b solana_program::account_info::AccountInfo<'a>,
- }
- /// `withdraw_nonce_account` CPI instruction.
- pub struct WithdrawNonceAccountCpi<'a, 'b> {
- /// The program to invoke.
- pub __program: &'b solana_program::account_info::AccountInfo<'a>,
- pub nonce_account: &'b solana_program::account_info::AccountInfo<'a>,
- pub recipient_account: &'b solana_program::account_info::AccountInfo<'a>,
- pub recent_blockhashes_sysvar: &'b solana_program::account_info::AccountInfo<'a>,
- pub rent_sysvar: &'b solana_program::account_info::AccountInfo<'a>,
- pub nonce_authority: &'b solana_program::account_info::AccountInfo<'a>,
- /// The arguments for the instruction.
- pub __args: WithdrawNonceAccountInstructionArgs,
- }
- impl<'a, 'b> WithdrawNonceAccountCpi<'a, 'b> {
- pub fn new(
- program: &'b solana_program::account_info::AccountInfo<'a>,
- accounts: WithdrawNonceAccountCpiAccounts<'a, 'b>,
- args: WithdrawNonceAccountInstructionArgs,
- ) -> Self {
- Self {
- __program: program,
- nonce_account: accounts.nonce_account,
- recipient_account: accounts.recipient_account,
- recent_blockhashes_sysvar: accounts.recent_blockhashes_sysvar,
- rent_sysvar: accounts.rent_sysvar,
- nonce_authority: accounts.nonce_authority,
- __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(5 + remaining_accounts.len());
- accounts.push(solana_program::instruction::AccountMeta::new(
- *self.nonce_account.key,
- false,
- ));
- accounts.push(solana_program::instruction::AccountMeta::new(
- *self.recipient_account.key,
- false,
- ));
- accounts.push(solana_program::instruction::AccountMeta::new_readonly(
- *self.recent_blockhashes_sysvar.key,
- false,
- ));
- accounts.push(solana_program::instruction::AccountMeta::new_readonly(
- *self.rent_sysvar.key,
- false,
- ));
- accounts.push(solana_program::instruction::AccountMeta::new_readonly(
- *self.nonce_authority.key,
- true,
- ));
- 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 = WithdrawNonceAccountInstructionData::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::SYSTEM_ID,
- accounts,
- data,
- };
- let mut account_infos = Vec::with_capacity(5 + 1 + remaining_accounts.len());
- account_infos.push(self.__program.clone());
- account_infos.push(self.nonce_account.clone());
- account_infos.push(self.recipient_account.clone());
- account_infos.push(self.recent_blockhashes_sysvar.clone());
- account_infos.push(self.rent_sysvar.clone());
- account_infos.push(self.nonce_authority.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)
- }
- }
- }
- /// Instruction builder for `WithdrawNonceAccount` via CPI.
- ///
- /// ### Accounts:
- ///
- /// 0. `[writable]` nonce_account
- /// 1. `[writable]` recipient_account
- /// 2. `[]` recent_blockhashes_sysvar
- /// 3. `[]` rent_sysvar
- /// 4. `[signer]` nonce_authority
- #[derive(Clone, Debug)]
- pub struct WithdrawNonceAccountCpiBuilder<'a, 'b> {
- instruction: Box<WithdrawNonceAccountCpiBuilderInstruction<'a, 'b>>,
- }
- impl<'a, 'b> WithdrawNonceAccountCpiBuilder<'a, 'b> {
- pub fn new(program: &'b solana_program::account_info::AccountInfo<'a>) -> Self {
- let instruction = Box::new(WithdrawNonceAccountCpiBuilderInstruction {
- __program: program,
- nonce_account: None,
- recipient_account: None,
- recent_blockhashes_sysvar: None,
- rent_sysvar: None,
- nonce_authority: None,
- withdraw_amount: None,
- __remaining_accounts: Vec::new(),
- });
- Self { instruction }
- }
- #[inline(always)]
- pub fn nonce_account(
- &mut self,
- nonce_account: &'b solana_program::account_info::AccountInfo<'a>,
- ) -> &mut Self {
- self.instruction.nonce_account = Some(nonce_account);
- self
- }
- #[inline(always)]
- pub fn recipient_account(
- &mut self,
- recipient_account: &'b solana_program::account_info::AccountInfo<'a>,
- ) -> &mut Self {
- self.instruction.recipient_account = Some(recipient_account);
- self
- }
- #[inline(always)]
- pub fn recent_blockhashes_sysvar(
- &mut self,
- recent_blockhashes_sysvar: &'b solana_program::account_info::AccountInfo<'a>,
- ) -> &mut Self {
- self.instruction.recent_blockhashes_sysvar = Some(recent_blockhashes_sysvar);
- self
- }
- #[inline(always)]
- pub fn rent_sysvar(
- &mut self,
- rent_sysvar: &'b solana_program::account_info::AccountInfo<'a>,
- ) -> &mut Self {
- self.instruction.rent_sysvar = Some(rent_sysvar);
- self
- }
- #[inline(always)]
- pub fn nonce_authority(
- &mut self,
- nonce_authority: &'b solana_program::account_info::AccountInfo<'a>,
- ) -> &mut Self {
- self.instruction.nonce_authority = Some(nonce_authority);
- self
- }
- #[inline(always)]
- pub fn withdraw_amount(&mut self, withdraw_amount: u64) -> &mut Self {
- self.instruction.withdraw_amount = Some(withdraw_amount);
- self
- }
- /// Add an additional account to the instruction.
- #[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
- }
- /// Add additional accounts to the instruction.
- ///
- /// Each account is represented by a tuple of the `AccountInfo`, a `bool` indicating whether the account is writable or not,
- /// and a `bool` indicating whether the account is a signer or not.
- #[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 = WithdrawNonceAccountInstructionArgs {
- withdraw_amount: self
- .instruction
- .withdraw_amount
- .clone()
- .expect("withdraw_amount is not set"),
- };
- let instruction = WithdrawNonceAccountCpi {
- __program: self.instruction.__program,
- nonce_account: self
- .instruction
- .nonce_account
- .expect("nonce_account is not set"),
- recipient_account: self
- .instruction
- .recipient_account
- .expect("recipient_account is not set"),
- recent_blockhashes_sysvar: self
- .instruction
- .recent_blockhashes_sysvar
- .expect("recent_blockhashes_sysvar is not set"),
- rent_sysvar: self
- .instruction
- .rent_sysvar
- .expect("rent_sysvar is not set"),
- nonce_authority: self
- .instruction
- .nonce_authority
- .expect("nonce_authority is not set"),
- __args: args,
- };
- instruction.invoke_signed_with_remaining_accounts(
- signers_seeds,
- &self.instruction.__remaining_accounts,
- )
- }
- }
- #[derive(Clone, Debug)]
- struct WithdrawNonceAccountCpiBuilderInstruction<'a, 'b> {
- __program: &'b solana_program::account_info::AccountInfo<'a>,
- nonce_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
- recipient_account: Option<&'b solana_program::account_info::AccountInfo<'a>>,
- recent_blockhashes_sysvar: Option<&'b solana_program::account_info::AccountInfo<'a>>,
- rent_sysvar: Option<&'b solana_program::account_info::AccountInfo<'a>>,
- nonce_authority: Option<&'b solana_program::account_info::AccountInfo<'a>>,
- withdraw_amount: Option<u64>,
- /// Additional instruction accounts `(AccountInfo, is_writable, is_signer)`.
- __remaining_accounts: Vec<(
- &'b solana_program::account_info::AccountInfo<'a>,
- bool,
- bool,
- )>,
- }
|