-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcancel_vesting.rs
73 lines (68 loc) · 2.6 KB
/
cancel_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
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)]
pub struct CancelVesting<'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, // Arbitrary check 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(
mut,
close = admin,
has_one = config, // This check is arbitrary, as ATA is baked into the PDA
seeds = [VEST_SEED.as_bytes(), config.key().as_ref(), vest.vester_ta.key().as_ref(), vest.maturation.to_le_bytes().as_ref()],
bump = vest.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> CancelVesting<'info> {
pub fn cancel_vesting(&mut self) -> Result<()> {
self.config.vested = self
.config
.vested
.checked_sub(self.vest.amount)
.ok_or(VestingError::Underflow)?;
self.vesting_balance.total_vesting_balance = self
.vesting_balance
.total_vesting_balance
.checked_sub(self.vest.amount)
.ok_or(VestingError::Underflow)?;
Ok(())
}
}