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
use {
crate::state::*,
anchor_lang::{prelude::*, solana_program::instruction::Instruction},
clockwork_crank::state::{CrankResponse, Queue, SEED_QUEUE},
};
#[derive(Accounts)]
pub struct SnapshotRotate<'info> {
#[account(seeds = [SEED_AUTHORITY], bump)]
pub authority: Account<'info, Authority>,
#[account(seeds = [SEED_CONFIG], bump)]
pub config: Account<'info, Config>,
#[account(
mut,
seeds = [
SEED_SNAPSHOT,
current_snapshot.id.to_be_bytes().as_ref()
],
bump,
constraint = current_snapshot.status == SnapshotStatus::Current
)]
pub current_snapshot: Account<'info, Snapshot>,
#[account(
mut,
seeds = [
SEED_SNAPSHOT,
current_snapshot.id.checked_add(1).unwrap().to_be_bytes().as_ref()
],
bump,
)]
pub next_snapshot: Account<'info, Snapshot>,
#[account(mut, seeds = [SEED_REGISTRY], bump)]
pub registry: Account<'info, Registry>,
#[account(
signer,
seeds = [
SEED_QUEUE,
authority.key().as_ref(),
"snapshot".as_bytes()
],
seeds::program = clockwork_crank::ID,
bump,
has_one = authority
)]
pub snapshot_queue: Account<'info, Queue>,
}
pub fn handler(ctx: Context<SnapshotRotate>) -> Result<CrankResponse> {
let authority = &ctx.accounts.authority;
let current_snapshot = &mut ctx.accounts.current_snapshot;
let next_snapshot = &mut ctx.accounts.next_snapshot;
let registry = &mut ctx.accounts.registry;
let snapshot_queue = &ctx.accounts.snapshot_queue;
registry.rotate_snapshot(Some(current_snapshot), next_snapshot)?;
let next_instruction = Some(
Instruction {
program_id: crate::ID,
accounts: vec![
AccountMeta::new_readonly(authority.key(), false),
AccountMeta::new(current_snapshot.key(), false),
AccountMeta::new(snapshot_queue.key(), true),
],
data: clockwork_crank::anchor::sighash("snapshot_close").into(),
}.into()
);
Ok(CrankResponse { next_instruction })
}