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 CreateVestingAccount {
pub share_amount: u64,
}
#[derive(Debug, Clone, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct CreateVestingAccountInstructionAccounts {
pub creator: solana_pubkey::Pubkey,
pub beneficiary: solana_pubkey::Pubkey,
pub pool_state: solana_pubkey::Pubkey,
pub vesting_record: solana_pubkey::Pubkey,
pub system_program: solana_pubkey::Pubkey,
pub remaining: Vec<solana_instruction::AccountMeta>,
}
impl CreateVestingAccount {
pub fn decode(data: &[u8]) -> Option<Self> {
if data.len() < 8 {
return None;
}
let discriminator = &data[0..8];
if discriminator != [129, 178, 2, 13, 217, 172, 230, 218] {
return None;
}
let mut data_slice = data;
data_slice = &data_slice[8..];
borsh::BorshDeserialize::deserialize(&mut data_slice).ok()
}
}
impl ArrangeAccounts for CreateVestingAccount {
type ArrangedAccounts = CreateVestingAccountInstructionAccounts;
fn arrange_accounts(
accounts: &[solana_instruction::AccountMeta],
) -> Option<Self::ArrangedAccounts> {
let mut iter = accounts.iter();
let creator = next_account(&mut iter)?;
let beneficiary = next_account(&mut iter)?;
let pool_state = next_account(&mut iter)?;
let vesting_record = next_account(&mut iter)?;
let system_program = next_account(&mut iter)?;
let remaining = iter.as_slice();
Some(CreateVestingAccountInstructionAccounts {
creator,
beneficiary,
pool_state,
vesting_record,
system_program,
remaining: remaining.to_vec(),
})
}
}