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
use anchor_lang::{prelude::*, AnchorDeserialize};

use crate::constants::SEED_CONFIG;

/**
 * Config
 */

#[account(zero_copy)]
#[derive(Debug, InitSpace)]
pub struct Config {
    pub admin: Pubkey,
    pub epoch_thread: Pubkey,
    pub hasher_thread: Pubkey,
    pub mint: Pubkey,
}

impl Config {
    pub fn pubkey() -> Pubkey {
        Pubkey::find_program_address(&[SEED_CONFIG], &crate::ID).0
    }
}

/**
 * ConfigSettings
 */

#[derive(AnchorSerialize, AnchorDeserialize)]
pub struct ConfigSettings {
    pub admin: Pubkey,
    pub epoch_thread: Pubkey,
    pub hasher_thread: Pubkey,
    pub mint: Pubkey,
}

/**
 * ConfigAccount
 */

pub trait ConfigAccount {
    fn init(&mut self, admin: Pubkey, mint: Pubkey) -> Result<()>;

    fn update(&mut self, settings: ConfigSettings) -> Result<()>;
}

impl ConfigAccount for AccountLoader<'_, Config> {
    fn init(&mut self, admin: Pubkey, mint: Pubkey) -> Result<()> {
        let mut config = self.load_init()?;
        config.admin = admin;
        config.mint = mint;
        Ok(())
    }

    fn update(&mut self, settings: ConfigSettings) -> Result<()> {
        let mut config = self.load_mut()?;
        config.admin = settings.admin;
        config.epoch_thread = settings.epoch_thread;
        config.hasher_thread = settings.hasher_thread;
        config.mint = settings.mint;
        Ok(())
    }
}