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
88
89
90
91
use {
crate::objects::*,
anchor_lang::{
prelude::*,
solana_program::{system_program, sysvar},
},
anchor_spl::{
associated_token::AssociatedToken,
token::{Mint, Token, TokenAccount},
},
std::mem::size_of,
};
#[derive(Accounts)]
pub struct NodeRegister<'info> {
#[account(address = anchor_spl::associated_token::ID)]
pub associated_token_program: Program<'info, AssociatedToken>,
#[account(mut, constraint = authority.key() != worker.key())]
pub authority: Signer<'info>,
#[account(address = Config::pubkey())]
pub config: Box<Account<'info, Config>>,
#[account(
init,
address = SnapshotEntry::pubkey(snapshot.key(), snapshot.node_count),
payer = authority,
space = 8 + size_of::<SnapshotEntry>(),
)]
pub entry: Account<'info, SnapshotEntry>,
#[account(address = config.mint)]
pub mint: Box<Account<'info, Mint>>,
#[account(
init,
address = Node::pubkey(registry.node_count),
payer = authority,
space = 8 + size_of::<Node>(),
)]
pub node: Account<'info, Node>,
#[account(
mut,
address = Registry::pubkey(),
constraint = !registry.is_locked
)]
pub registry: Account<'info, Registry>,
#[account(address = sysvar::rent::ID)]
pub rent: Sysvar<'info, Rent>,
#[account(
mut,
address = snapshot.pubkey(),
constraint = snapshot.status == SnapshotStatus::Current
)]
pub snapshot: Account<'info, Snapshot>,
#[account(
init,
payer = authority,
associated_token::authority = node,
associated_token::mint = mint,
)]
pub stake: Account<'info, TokenAccount>,
#[account(address = system_program::ID)]
pub system_program: Program<'info, System>,
#[account(address = anchor_spl::token::ID)]
pub token_program: Program<'info, Token>,
#[account()]
pub worker: Signer<'info>,
}
pub fn handler(ctx: Context<NodeRegister>) -> Result<()> {
let authority = &mut ctx.accounts.authority;
let node = &mut ctx.accounts.node;
let registry = &mut ctx.accounts.registry;
let stake = &mut ctx.accounts.stake;
let worker = &ctx.accounts.worker;
registry.new_node(authority, node, stake, worker)?;
Ok(())
}