This commit is contained in:
Hardhat Chad
2025-09-20 11:53:27 -07:00
parent 44c87aa89c
commit 37f1a9d55b
7 changed files with 31 additions and 31 deletions

View File

@@ -29,7 +29,7 @@ pub struct ResetEvent {
pub num_winners: u64,
/// The total amount of SOL prospected in the round.
pub total_prospects: u64,
pub total_deployed: u64,
/// The total amount of SOL put in the ORE vault.
pub total_vaulted: u64,

View File

@@ -10,8 +10,8 @@ pub struct Board {
/// The round number.
pub id: u64,
/// The prospects for the round.
pub prospects: [u64; 25],
/// The deployed SOL for the round.
pub deployed: [u64; 25],
/// The timestamp at which the block starts mining.
pub start_at: i64,
@@ -28,8 +28,8 @@ pub struct Board {
/// The top miner of the round.
pub top_miner: Pubkey,
/// The total amount of SOL prospected in the round.
pub total_prospects: u64,
/// The total amount of SOL deployed in the round.
pub total_deployed: u64,
/// The total amount of SOL put in the ORE vault.
pub total_vaulted: u64,

View File

@@ -11,7 +11,7 @@ pub struct Miner {
pub authority: Pubkey,
/// The miner's prospects in the current round.
pub prospects: [u64; 25],
pub deployed: [u64; 25],
/// The amount of SOL this miner can claim.
pub rewards_sol: u64,