use carbon_core::{account_utils::next_account, deserialize::ArrangeAccounts};
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Debug, Clone, borsh::BorshSerialize, borsh::BorshDeserialize, PartialEq)]
pub struct CreatePlatformVestingAccount {}
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct CreatePlatformVestingAccountInstructionAccounts {
pub platform_vesting_wallet: solana_pubkey::Pubkey,
pub beneficiary: solana_pubkey::Pubkey,
pub platform_config: solana_pubkey::Pubkey,
pub pool_state: solana_pubkey::Pubkey,
pub platform_vesting_record: solana_pubkey::Pubkey,
pub system_program: solana_pubkey::Pubkey,
pub remaining: Vec<solana_instruction::AccountMeta>,
}
impl CreatePlatformVestingAccount {
pub fn decode(data: &[u8]) -> Option<Self> {
if data.len() < 8 {
return None;
}
let discriminator = &data[0..8];
if discriminator != [146, 71, 173, 69, 98, 19, 15, 106] {
return None;
}
let mut data_slice = data;
data_slice = &data_slice[8..];
borsh::BorshDeserialize::deserialize(&mut data_slice).ok()
}
}
impl ArrangeAccounts for CreatePlatformVestingAccount {
type ArrangedAccounts = CreatePlatformVestingAccountInstructionAccounts;
fn arrange_accounts(
accounts: &[solana_instruction::AccountMeta],
) -> Option<Self::ArrangedAccounts> {
let mut iter = accounts.iter();
let platform_vesting_wallet = next_account(&mut iter)?;
let beneficiary = next_account(&mut iter)?;
let platform_config = next_account(&mut iter)?;
let pool_state = next_account(&mut iter)?;
let platform_vesting_record = next_account(&mut iter)?;
let system_program = next_account(&mut iter)?;
let remaining = iter.as_slice();
Some(CreatePlatformVestingAccountInstructionAccounts {
platform_vesting_wallet,
beneficiary,
platform_config,
pool_state,
platform_vesting_record,
system_program,
remaining: remaining.to_vec(),
})
}
}