This commit is contained in:
Hardhat Chad
2025-10-01 15:59:38 -07:00
parent 48a21e4ecd
commit c694dba2a2
6 changed files with 31 additions and 14 deletions

View File

@@ -95,4 +95,4 @@ pub const DENOMINATOR_BPS: u64 = 10_000;
pub const BOOST_RESERVE_TOKEN: Pubkey = pubkey!("Gce36ZUsBDJsoLrfCBxUB5Sfq2DsGunofStvxFx6rBiD");
/// The fee paid to bots if they checkpoint a user.
pub const CHECKPOINT_FEE: u64 = 10_000; // 0.00001 SOL
pub const CHECKPOINT_FEE: u64 = 100_000; // 0.0001 SOL

View File

@@ -23,6 +23,7 @@ pub struct Miner {
pub checkpoint_id: u64,
/// The amount of SOL this miner has had refunded and may claim.
#[deprecated]
pub refund_sol: u64,
/// The amount of SOL this miner can claim.

View File

@@ -16,6 +16,9 @@ pub struct Round {
/// The hash of the end slot, provided by solana, used for random number generation.
pub slot_hash: [u8; 32],
/// The count of miners on each square.
pub count: [u64; 25],
/// The slot at which claims for this round account end.
pub expires_at: u64,