coal_guilds_api/state/
config.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use steel::*;

use super::GuildsAccount;

/// Boost ...
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
pub struct Config {
    /// The bump used for signing.
    pub bump: u64,

    /// The total amount of stake in the guilds program.
    pub total_stake: u64,

    /// The total multiplier of the guilds LP pool.
    pub total_multiplier: u64,
}

account!(GuildsAccount, Config);