-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcreate_vesting.rs
83 lines (77 loc) · 2.82 KB
/
create_vesting.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
use anchor_lang::prelude::*;
use anchor_spl::associated_token::AssociatedToken;
use anchor_spl::token_interface::{Mint, TokenAccount, TokenInterface};
use crate::context::{VESTING_BALANCE_SEED, VESTING_CONFIG_SEED, VEST_SEED, CONFIG_SEED};
use crate::error::VestingError;
use crate::state::{Vesting, VestingBalance, VestingConfig};
use crate::state::global_config::GlobalConfig;
#[derive(Accounts)]
#[instruction(maturation: i64)]
pub struct CreateVesting<'info> {
#[account(
mut,
constraint = global_config.vesting_admin == admin.key()
@ VestingError::InvalidVestingAdmin
)]
admin: Signer<'info>,
mint: InterfaceAccount<'info, Mint>,
#[account(
associated_token::mint = mint,
associated_token::authority = vester_ta.owner,
associated_token::token_program = token_program
)]
vester_ta: InterfaceAccount<'info, TokenAccount>,
#[account(
mut,
constraint = !config.finalized @ VestingError::VestingFinalized, // Vesting cannot be cancelled after vest is finalized
has_one = mint, // This check is arbitrary, as mint is baked into the PDA
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 = Vesting::INIT_SPACE,
seeds = [VEST_SEED.as_bytes(), config.key().as_ref(), vester_ta.key().as_ref(), maturation.to_le_bytes().as_ref()],
bump
)]
vest: Account<'info, Vesting>,
#[account(
mut,
seeds = [VESTING_BALANCE_SEED.as_bytes(), config.key().as_ref(), vester_ta.owner.key().as_ref()],
bump = vesting_balance.bump
)]
vesting_balance: Account<'info, VestingBalance>,
#[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> CreateVesting<'info> {
pub fn create_vesting(&mut self, maturation: i64, amount: u64, bump: u8) -> Result<()> {
// Add to total vested amount
self.config.vested = self
.config
.vested
.checked_add(amount)
.ok_or(VestingError::Overflow)?;
self.vesting_balance.total_vesting_balance = self
.vesting_balance
.total_vesting_balance
.checked_add(amount)
.ok_or(VestingError::Overflow)?;
self.vest.set_inner(Vesting {
vester_ta: self.vester_ta.key(),
config: self.config.key(),
amount,
maturation,
bump,
});
Ok(())
}
}