Files
ore/api/src/state/config.rs
2025-05-10 10:36:37 -07:00

26 lines
612 B
Rust

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 timestamp of the last reset.
pub last_reset_at: i64,
/// The best difficulty score of this epoch.
pub best_difficulty: u64,
/// The proof of the best submitted hash of this epoch.
pub best_proof: Pubkey,
/// The challenge of this epoch.
pub challenge: [u8; 32],
/// The target emissions rate in ORE/min.
pub block_reward: u64,
}
account!(OreAccount, Config);