-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstake_account.rs
87 lines (75 loc) · 2.4 KB
/
stake_account.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
84
85
86
87
use anchor_lang::prelude::borsh::BorshSchema;
use anchor_lang::prelude::*;
use std::mem::size_of;
/// This is the metadata account for each staker
/// It is derived from the checkpoints account with seeds "stake_metadata"
/// and the checkpoints account pubkey
/// It stores some PDA bumps, owner and delegate accounts
#[account]
#[derive(Default, Debug, BorshSchema)]
pub struct StakeAccountMetadata {
pub metadata_bump: u8,
pub custody_bump: u8,
pub authority_bump: u8,
pub recorded_balance: u64,
pub recorded_vesting_balance: u64,
pub owner: Pubkey,
pub delegate: Pubkey,
pub stake_account_checkpoints_last_index: u8,
}
#[event]
pub struct RecordedBalanceChanged {
pub owner: Pubkey,
pub previous_balance: u64,
pub new_balance: u64,
}
#[event]
pub struct RecordedVestingBalanceChanged {
pub owner: Pubkey,
pub previous_balance: u64,
pub new_balance: u64,
}
impl StakeAccountMetadata {
pub const LEN: usize =
StakeAccountMetadata::DISCRIMINATOR.len() + size_of::<StakeAccountMetadata>();
pub fn initialize(
&mut self,
metadata_bump: u8,
custody_bump: u8,
authority_bump: u8,
owner: &Pubkey,
delegate: &Pubkey,
stake_account_checkpoints_last: u8,
) {
self.metadata_bump = metadata_bump;
self.custody_bump = custody_bump;
self.authority_bump = authority_bump;
self.owner = *owner;
self.delegate = *delegate;
self.stake_account_checkpoints_last_index = stake_account_checkpoints_last;
}
pub fn update_recorded_balance(&mut self, new_recorded_balance: u64) {
emit!(RecordedBalanceChanged {
owner: self.owner,
previous_balance: self.recorded_balance,
new_balance: new_recorded_balance,
});
self.recorded_balance = new_recorded_balance;
}
pub fn update_recorded_vesting_balance(&mut self, new_recorded_vesting_balance: u64) {
emit!(RecordedVestingBalanceChanged {
owner: self.owner,
previous_balance: self.recorded_vesting_balance,
new_balance: new_recorded_vesting_balance,
});
self.recorded_vesting_balance = new_recorded_vesting_balance;
}
}
#[cfg(test)]
pub mod tests {
use super::StakeAccountMetadata;
#[test]
fn check_size() {
assert!(StakeAccountMetadata::LEN == 8 + 8 + 8 + 8 + 32 + 32); // == 96
}
}