From fdadc1dcfc1e982d0385513c524b8a386a09004a Mon Sep 17 00:00:00 2001 From: Hardhat Chad Date: Mon, 6 May 2024 17:24:59 +0000 Subject: [PATCH] fine tuning --- src/consts.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/consts.rs b/src/consts.rs index bddd95a..fa395c4 100644 --- a/src/consts.rs +++ b/src/consts.rs @@ -21,13 +21,13 @@ pub const ONE_ORE: u64 = 10u64.pow(TOKEN_DECIMALS as u32); pub const ONE_MINUTE: i64 = 60; /// The duration of an Ore epoch, in seconds. -pub const EPOCH_DURATION: i64 = ONE_MINUTE.saturating_mul(3); +pub const EPOCH_DURATION: i64 = ONE_MINUTE.saturating_mul(5); /// The duration of two years, in minutes. pub const TWO_YEARS: u64 = 60 * 24 * 365 * 2; -/// The maximum token supply (100 million). -pub const MAX_SUPPLY: u64 = ONE_ORE.saturating_mul(100_000_000); +/// The maximum token supply (42 million). +pub const MAX_SUPPLY: u64 = ONE_ORE.saturating_mul(42_000_000); /// The target quantity of ORE to be mined per epoch. /// Inflation rate ≈ 1 ORE / epoch (min 0, max 2)