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
use anchor_lang::{prelude::*, AnchorDeserialize};
pub const SEED_UNSTAKE: &[u8] = b"unstake";
#[account]
#[derive(Debug)]
pub struct Unstake {
pub amount: u64,
pub authority: Pubkey,
pub delegation: Pubkey,
pub id: u64,
pub worker: Pubkey,
}
impl Unstake {
pub fn pubkey(id: u64) -> Pubkey {
Pubkey::find_program_address(&[SEED_UNSTAKE, id.to_be_bytes().as_ref()], &crate::ID).0
}
}
impl TryFrom<Vec<u8>> for Unstake {
type Error = Error;
fn try_from(data: Vec<u8>) -> std::result::Result<Self, Self::Error> {
Unstake::try_deserialize(&mut data.as_slice())
}
}
pub trait UnstakeAccount {
fn pubkey(&self) -> Pubkey;
fn init(
&mut self,
amount: u64,
authority: Pubkey,
delegation: Pubkey,
id: u64,
worker: Pubkey,
) -> Result<()>;
}
impl UnstakeAccount for Account<'_, Unstake> {
fn pubkey(&self) -> Pubkey {
Unstake::pubkey(self.id)
}
fn init(
&mut self,
amount: u64,
authority: Pubkey,
delegation: Pubkey,
id: u64,
worker: Pubkey,
) -> Result<()> {
self.amount = amount;
self.authority = authority.key();
self.delegation = delegation;
self.id = id;
self.worker = worker;
Ok(())
}
}