-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreate_vesting_balance.rs
61 lines (58 loc) · 2.04 KB
/
create_vesting_balance.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
use crate::context::{CONFIG_SEED, VESTING_BALANCE_SEED, VESTING_CONFIG_SEED};
use crate::error::VestingError;
use crate::state::global_config::GlobalConfig;
use crate::state::{VestingBalance, VestingConfig};
use anchor_lang::prelude::*;
use anchor_spl::associated_token::AssociatedToken;
use anchor_spl::token_interface::{Mint, TokenAccount, TokenInterface};
#[derive(Accounts)]
#[instruction()]
pub struct CreateVestingBalance<'info> {
#[account(
mut,
constraint = global_config.vesting_admin == admin.key()
@ VestingError::InvalidVestingAdmin
)]
admin: Signer<'info>,
mint: InterfaceAccount<'info, Mint>,
#[account(
mut,
seeds = [VESTING_CONFIG_SEED.as_bytes(), mint.key().as_ref(), config.seed.to_le_bytes().as_ref()],
bump = config.bump
)]
config: Account<'info, VestingConfig>,
#[account(
init,
payer = admin,
space = VestingBalance::LEN,
seeds = [VESTING_BALANCE_SEED.as_bytes(), config.key().as_ref(), vester_ta.owner.key().as_ref()],
bump
)]
vesting_balance: Account<'info, VestingBalance>,
#[account(
associated_token::mint = mint,
associated_token::authority = vester_ta.owner,
associated_token::token_program = token_program
)]
vester_ta: InterfaceAccount<'info, TokenAccount>,
#[account(
seeds = [CONFIG_SEED.as_bytes()],
bump = global_config.bump,
)]
pub global_config: Box<Account<'info, GlobalConfig>>,
associated_token_program: Program<'info, AssociatedToken>,
token_program: Interface<'info, TokenInterface>,
system_program: Program<'info, System>,
}
impl<'info> CreateVestingBalance<'info> {
pub fn create_vesting_balance(&mut self, bump: u8) -> Result<()> {
self.vesting_balance.set_inner(VestingBalance {
vester: self.vester_ta.owner.key(),
stake_account_metadata: Pubkey::default(),
total_vesting_balance: 0,
bump,
rent_payer: self.admin.key(),
});
Ok(())
}
}