mirror of
https://github.com/d0zingcat/ore.git
synced 2026-05-25 07:26:50 +00:00
reduce supply cap to 5m (#107)
This commit is contained in:
4
Cargo.lock
generated
4
Cargo.lock
generated
@@ -1321,7 +1321,7 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ore-api"
|
name = "ore-api"
|
||||||
version = "2.6.0"
|
version = "2.7.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"array-const-fn-init",
|
"array-const-fn-init",
|
||||||
"bytemuck",
|
"bytemuck",
|
||||||
@@ -1357,7 +1357,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ore-program"
|
name = "ore-program"
|
||||||
version = "2.6.0"
|
version = "2.7.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"drillx",
|
"drillx",
|
||||||
"mpl-token-metadata",
|
"mpl-token-metadata",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ resolver = "2"
|
|||||||
members = ["api", "program"]
|
members = ["api", "program"]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "2.6.0"
|
version = "2.7.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
homepage = "https://ore.supply"
|
homepage = "https://ore.supply"
|
||||||
|
|||||||
@@ -39,8 +39,8 @@ pub const EPOCH_MINUTES: i64 = 5;
|
|||||||
/// The duration of a program epoch, in seconds.
|
/// The duration of a program epoch, in seconds.
|
||||||
pub const EPOCH_DURATION: i64 = ONE_MINUTE * EPOCH_MINUTES;
|
pub const EPOCH_DURATION: i64 = ONE_MINUTE * EPOCH_MINUTES;
|
||||||
|
|
||||||
/// The maximum token supply (21 million).
|
/// The maximum token supply (5 million).
|
||||||
pub const MAX_SUPPLY: u64 = ONE_ORE * 21_000_000;
|
pub const MAX_SUPPLY: u64 = ONE_ORE * 5_000_000;
|
||||||
|
|
||||||
/// The target quantity of ORE to be mined per epoch.
|
/// The target quantity of ORE to be mined per epoch.
|
||||||
pub const TARGET_EPOCH_REWARDS: u64 = ONE_ORE * EPOCH_MINUTES as u64;
|
pub const TARGET_EPOCH_REWARDS: u64 = ONE_ORE * EPOCH_MINUTES as u64;
|
||||||
|
|||||||
Reference in New Issue
Block a user