coal_guilds_api/state/
config.rs

1use steel::*;
2
3use super::GuildsAccount;
4
5/// Boost ...
6#[repr(C)]
7#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
8pub struct Config {
9    /// The bump used for signing.
10    pub bump: u64,
11
12    /// The total amount of stake in the guilds program.
13    pub total_stake: u64,
14
15    /// The total multiplier of the guilds LP pool.
16    pub total_multiplier: u64,
17}
18
19account!(GuildsAccount, Config);