ore-api 3.2.0-boostv3

Liquid digial gold everyone can mine
Documentation
use steel::*;

use super::OreAccount;

/// Config is a singleton account which manages program global variables.
#[repr(C)]
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
pub struct Config {
    /// The base reward rate paid out for a hash of minimum difficulty.
    pub base_reward_rate: u64,

    /// The timestamp of the last reset.
    pub last_reset_at: i64,

    /// The minimum accepted difficulty.
    pub min_difficulty: u64,

    /// The largest known stake balance on the network from the last epoch.
    #[deprecated(since = "2.4.0", note = "Please stake with the boost program")]
    pub top_balance: u64,
}

account!(OreAccount, Config);