valiant_vortex_client 0.2.1

Rust client to interact with Valiant's on-chain Vortex program.
Documentation
//! This code was AUTOGENERATED using the codama library.
//! Please DO NOT EDIT THIS FILE, instead use visitors
//! to add features, then rerun codama to update it.
//!
//! <https://github.com/codama-idl/codama>
//!

use borsh::BorshSerialize;
use borsh::BorshDeserialize;

/// Accounts.
#[derive(Debug)]
pub struct CollectCycloneLpFees {
      
              
          pub cyclone: solana_program::pubkey::Pubkey,
          
              
          pub collect_lp_fees_authority: solana_program::pubkey::Pubkey,
          
              
          pub token_vault_b: solana_program::pubkey::Pubkey,
          
              
          pub token_destination_b: solana_program::pubkey::Pubkey,
          
              
          pub token_program: solana_program::pubkey::Pubkey,
      }

impl CollectCycloneLpFees {
  pub fn instruction(&self) -> solana_program::instruction::Instruction {
    self.instruction_with_remaining_accounts(&[])
  }
  #[allow(clippy::arithmetic_side_effects)]
  #[allow(clippy::vec_init_then_push)]
  pub fn instruction_with_remaining_accounts(&self, 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.cyclone,
            false
          ));
                                          accounts.push(solana_program::instruction::AccountMeta::new_readonly(
            self.collect_lp_fees_authority,
            true
          ));
                                          accounts.push(solana_program::instruction::AccountMeta::new(
            self.token_vault_b,
            false
          ));
                                          accounts.push(solana_program::instruction::AccountMeta::new(
            self.token_destination_b,
            false
          ));
                                          accounts.push(solana_program::instruction::AccountMeta::new_readonly(
            self.token_program,
            false
          ));
                      accounts.extend_from_slice(remaining_accounts);
    let data = borsh::to_vec(&CollectCycloneLpFeesInstructionData::new()).unwrap();
    
    solana_program::instruction::Instruction {
      program_id: crate::VORTEX_ID,
      accounts,
      data,
    }
  }
}

#[derive(BorshSerialize, BorshDeserialize, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
 pub struct CollectCycloneLpFeesInstructionData {
            discriminator: [u8; 8],
      }

impl CollectCycloneLpFeesInstructionData {
  pub fn new() -> Self {
    Self {
                        discriminator: [203, 208, 41, 10, 133, 220, 71, 18],
                  }
  }
}

impl Default for CollectCycloneLpFeesInstructionData {
  fn default() -> Self {
    Self::new()
  }
}



/// Instruction builder for `CollectCycloneLpFees`.
///
/// ### Accounts:
///
                ///   0. `[writable]` cyclone
                ///   1. `[signer]` collect_lp_fees_authority
                ///   2. `[writable]` token_vault_b
                ///   3. `[writable]` token_destination_b
                ///   4. `[optional]` token_program (default to `TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA`)
#[derive(Clone, Debug, Default)]
pub struct CollectCycloneLpFeesBuilder {
            cyclone: Option<solana_program::pubkey::Pubkey>,
                collect_lp_fees_authority: Option<solana_program::pubkey::Pubkey>,
                token_vault_b: Option<solana_program::pubkey::Pubkey>,
                token_destination_b: Option<solana_program::pubkey::Pubkey>,
                token_program: Option<solana_program::pubkey::Pubkey>,
                __remaining_accounts: Vec<solana_program::instruction::AccountMeta>,
}

impl CollectCycloneLpFeesBuilder {
  pub fn new() -> Self {
    Self::default()
  }
            #[inline(always)]
    pub fn cyclone(&mut self, cyclone: solana_program::pubkey::Pubkey) -> &mut Self {
                        self.cyclone = Some(cyclone);
                    self
    }
            #[inline(always)]
    pub fn collect_lp_fees_authority(&mut self, collect_lp_fees_authority: solana_program::pubkey::Pubkey) -> &mut Self {
                        self.collect_lp_fees_authority = Some(collect_lp_fees_authority);
                    self
    }
            #[inline(always)]
    pub fn token_vault_b(&mut self, token_vault_b: solana_program::pubkey::Pubkey) -> &mut Self {
                        self.token_vault_b = Some(token_vault_b);
                    self
    }
            #[inline(always)]
    pub fn token_destination_b(&mut self, token_destination_b: solana_program::pubkey::Pubkey) -> &mut Self {
                        self.token_destination_b = Some(token_destination_b);
                    self
    }
            /// `[optional account, default to 'TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA']`
#[inline(always)]
    pub fn token_program(&mut self, token_program: solana_program::pubkey::Pubkey) -> &mut Self {
                        self.token_program = Some(token_program);
                    self
    }
            /// Add an additional 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 = CollectCycloneLpFees {
                              cyclone: self.cyclone.expect("cyclone is not set"),
                                        collect_lp_fees_authority: self.collect_lp_fees_authority.expect("collect_lp_fees_authority is not set"),
                                        token_vault_b: self.token_vault_b.expect("token_vault_b is not set"),
                                        token_destination_b: self.token_destination_b.expect("token_destination_b is not set"),
                                        token_program: self.token_program.unwrap_or(solana_program::pubkey!("TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA")),
                      };
    
    accounts.instruction_with_remaining_accounts(&self.__remaining_accounts)
  }
}

  /// `collect_cyclone_lp_fees` CPI accounts.
  pub struct CollectCycloneLpFeesCpiAccounts<'a, 'b> {
          
                    
              pub cyclone: &'b solana_program::account_info::AccountInfo<'a>,
                
                    
              pub collect_lp_fees_authority: &'b solana_program::account_info::AccountInfo<'a>,
                
                    
              pub token_vault_b: &'b solana_program::account_info::AccountInfo<'a>,
                
                    
              pub token_destination_b: &'b solana_program::account_info::AccountInfo<'a>,
                
                    
              pub token_program: &'b solana_program::account_info::AccountInfo<'a>,
            }

/// `collect_cyclone_lp_fees` CPI instruction.
pub struct CollectCycloneLpFeesCpi<'a, 'b> {
  /// The program to invoke.
  pub __program: &'b solana_program::account_info::AccountInfo<'a>,
      
              
          pub cyclone: &'b solana_program::account_info::AccountInfo<'a>,
          
              
          pub collect_lp_fees_authority: &'b solana_program::account_info::AccountInfo<'a>,
          
              
          pub token_vault_b: &'b solana_program::account_info::AccountInfo<'a>,
          
              
          pub token_destination_b: &'b solana_program::account_info::AccountInfo<'a>,
          
              
          pub token_program: &'b solana_program::account_info::AccountInfo<'a>,
        }

impl<'a, 'b> CollectCycloneLpFeesCpi<'a, 'b> {
  pub fn new(
    program: &'b solana_program::account_info::AccountInfo<'a>,
          accounts: CollectCycloneLpFeesCpiAccounts<'a, 'b>,
          ) -> Self {
    Self {
      __program: program,
              cyclone: accounts.cyclone,
              collect_lp_fees_authority: accounts.collect_lp_fees_authority,
              token_vault_b: accounts.token_vault_b,
              token_destination_b: accounts.token_destination_b,
              token_program: accounts.token_program,
                }
  }
  #[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::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_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.cyclone.key,
            false
          ));
                                          accounts.push(solana_program::instruction::AccountMeta::new_readonly(
            *self.collect_lp_fees_authority.key,
            true
          ));
                                          accounts.push(solana_program::instruction::AccountMeta::new(
            *self.token_vault_b.key,
            false
          ));
                                          accounts.push(solana_program::instruction::AccountMeta::new(
            *self.token_destination_b.key,
            false
          ));
                                          accounts.push(solana_program::instruction::AccountMeta::new_readonly(
            *self.token_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 data = borsh::to_vec(&CollectCycloneLpFeesInstructionData::new()).unwrap();
    
    let instruction = solana_program::instruction::Instruction {
      program_id: crate::VORTEX_ID,
      accounts,
      data,
    };
    let mut account_infos = Vec::with_capacity(6 + remaining_accounts.len());
    account_infos.push(self.__program.clone());
                  account_infos.push(self.cyclone.clone());
                        account_infos.push(self.collect_lp_fees_authority.clone());
                        account_infos.push(self.token_vault_b.clone());
                        account_infos.push(self.token_destination_b.clone());
                        account_infos.push(self.token_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)
    }
  }
}

/// Instruction builder for `CollectCycloneLpFees` via CPI.
///
/// ### Accounts:
///
                ///   0. `[writable]` cyclone
                ///   1. `[signer]` collect_lp_fees_authority
                ///   2. `[writable]` token_vault_b
                ///   3. `[writable]` token_destination_b
          ///   4. `[]` token_program
#[derive(Clone, Debug)]
pub struct CollectCycloneLpFeesCpiBuilder<'a, 'b> {
  instruction: Box<CollectCycloneLpFeesCpiBuilderInstruction<'a, 'b>>,
}

impl<'a, 'b> CollectCycloneLpFeesCpiBuilder<'a, 'b> {
  pub fn new(program: &'b solana_program::account_info::AccountInfo<'a>) -> Self {
    let instruction = Box::new(CollectCycloneLpFeesCpiBuilderInstruction {
      __program: program,
              cyclone: None,
              collect_lp_fees_authority: None,
              token_vault_b: None,
              token_destination_b: None,
              token_program: None,
                                __remaining_accounts: Vec::new(),
    });
    Self { instruction }
  }
      #[inline(always)]
    pub fn cyclone(&mut self, cyclone: &'b solana_program::account_info::AccountInfo<'a>) -> &mut Self {
                        self.instruction.cyclone = Some(cyclone);
                    self
    }
      #[inline(always)]
    pub fn collect_lp_fees_authority(&mut self, collect_lp_fees_authority: &'b solana_program::account_info::AccountInfo<'a>) -> &mut Self {
                        self.instruction.collect_lp_fees_authority = Some(collect_lp_fees_authority);
                    self
    }
      #[inline(always)]
    pub fn token_vault_b(&mut self, token_vault_b: &'b solana_program::account_info::AccountInfo<'a>) -> &mut Self {
                        self.instruction.token_vault_b = Some(token_vault_b);
                    self
    }
      #[inline(always)]
    pub fn token_destination_b(&mut self, token_destination_b: &'b solana_program::account_info::AccountInfo<'a>) -> &mut Self {
                        self.instruction.token_destination_b = Some(token_destination_b);
                    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
    }
            /// 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 instruction = CollectCycloneLpFeesCpi {
        __program: self.instruction.__program,
                  
          cyclone: self.instruction.cyclone.expect("cyclone is not set"),
                  
          collect_lp_fees_authority: self.instruction.collect_lp_fees_authority.expect("collect_lp_fees_authority is not set"),
                  
          token_vault_b: self.instruction.token_vault_b.expect("token_vault_b is not set"),
                  
          token_destination_b: self.instruction.token_destination_b.expect("token_destination_b is not set"),
                  
          token_program: self.instruction.token_program.expect("token_program is not set"),
                    };
    instruction.invoke_signed_with_remaining_accounts(signers_seeds, &self.instruction.__remaining_accounts)
  }
}

#[derive(Clone, Debug)]
struct CollectCycloneLpFeesCpiBuilderInstruction<'a, 'b> {
  __program: &'b solana_program::account_info::AccountInfo<'a>,
            cyclone: Option<&'b solana_program::account_info::AccountInfo<'a>>,
                collect_lp_fees_authority: Option<&'b solana_program::account_info::AccountInfo<'a>>,
                token_vault_b: Option<&'b solana_program::account_info::AccountInfo<'a>>,
                token_destination_b: Option<&'b solana_program::account_info::AccountInfo<'a>>,
                token_program: Option<&'b solana_program::account_info::AccountInfo<'a>>,
                /// Additional instruction accounts `(AccountInfo, is_writable, is_signer)`.
  __remaining_accounts: Vec<(&'b solana_program::account_info::AccountInfo<'a>, bool, bool)>,
}