1use array_const_fn_init::array_const_fn_init;
2use const_crypto::ed25519;
3use solana_program::{pubkey, pubkey::Pubkey};
4
5pub const INITIALIZER_ADDRESS: Pubkey = pubkey!("HBUh9g46wk2X89CvaNN15UmsznP59rh6od1h8JwYAopk");
7
8pub const INITIAL_BASE_REWARD_RATE: u64 = BASE_REWARD_RATE_MIN_THRESHOLD;
10
11pub const BASE_REWARD_RATE_MIN_THRESHOLD: u64 = 2u64.pow(5);
13
14pub const BASE_REWARD_RATE_MAX_THRESHOLD: u64 = 2u64.pow(8);
16
17pub const TOLERANCE: i64 = 5;
19
20pub const INITIAL_MIN_DIFFICULTY: u32 = 1;
22
23pub const TOKEN_DECIMALS: u8 = 11;
26
27pub const TOKEN_DECIMALS_V1: u8 = 9;
29
30pub const ONE_ORE: u64 = 10u64.pow(TOKEN_DECIMALS as u32);
32
33pub const ONE_MINUTE: i64 = 60;
35
36pub const EPOCH_MINUTES: i64 = 10;
38
39pub const EPOCH_DURATION: i64 = ONE_MINUTE * EPOCH_MINUTES;
41
42pub const MAX_SUPPLY: u64 = ONE_ORE * 5_000_000;
44
45pub const TARGET_EPOCH_REWARDS: u64 = ONE_ORE * EPOCH_MINUTES as u64;
47
48pub const MAX_EPOCH_REWARDS: u64 = TARGET_EPOCH_REWARDS * BUS_COUNT as u64;
51
52pub const BUS_EPOCH_REWARDS: u64 = MAX_EPOCH_REWARDS / BUS_COUNT as u64;
54
55pub const BUS_COUNT: usize = 8;
57
58pub const SMOOTHING_FACTOR: u64 = 2;
61
62static_assertions::const_assert!(
64 (MAX_EPOCH_REWARDS / BUS_COUNT as u64) * BUS_COUNT as u64 == MAX_EPOCH_REWARDS
65);
66
67pub const BUS: &[u8] = b"bus";
69
70pub const CONFIG: &[u8] = b"config";
72
73pub const METADATA: &[u8] = b"metadata";
75
76pub const MINT: &[u8] = b"mint";
78
79pub const PROOF: &[u8] = b"proof";
81
82pub const TREASURY: &[u8] = b"treasury";
84
85pub const MINT_NOISE: [u8; 16] = [
87 89, 157, 88, 232, 243, 249, 197, 132, 199, 49, 19, 234, 91, 94, 150, 41,
88];
89
90pub const METADATA_NAME: &str = "ORE";
92
93pub const METADATA_SYMBOL: &str = "ORE";
95
96pub const METADATA_URI: &str = "https://ore.supply/metadata-v2.json";
98
99const PROGRAM_ID: [u8; 32] = unsafe { *(&crate::id() as *const Pubkey as *const [u8; 32]) };
101
102pub const BUS_ADDRESSES: [Pubkey; BUS_COUNT] = array_const_fn_init![const_bus_address; 8];
104
105const fn const_bus_address(i: usize) -> Pubkey {
107 Pubkey::new_from_array(ed25519::derive_program_address(&[BUS, &[i as u8]], &PROGRAM_ID).0)
108}
109
110pub const CONFIG_ADDRESS: Pubkey =
112 Pubkey::new_from_array(ed25519::derive_program_address(&[CONFIG], &PROGRAM_ID).0);
113
114pub const METADATA_ADDRESS: Pubkey = Pubkey::new_from_array(
116 ed25519::derive_program_address(
117 &[
118 METADATA,
119 unsafe { &*(&mpl_token_metadata::ID as *const Pubkey as *const [u8; 32]) },
120 unsafe { &*(&MINT_ADDRESS as *const Pubkey as *const [u8; 32]) },
121 ],
122 unsafe { &*(&mpl_token_metadata::ID as *const Pubkey as *const [u8; 32]) },
123 )
124 .0,
125);
126
127pub const MINT_ADDRESS: Pubkey =
129 Pubkey::new_from_array(ed25519::derive_program_address(&[MINT, &MINT_NOISE], &PROGRAM_ID).0);
130
131pub const MINT_BUMP: u8 = ed25519::derive_program_address(&[MINT, &MINT_NOISE], &PROGRAM_ID).1;
133
134#[deprecated(since = "2.6.0", note = "v1 tokens are no longer eligable to upgrade")]
136pub const MINT_V1_ADDRESS: Pubkey = pubkey!("oreoN2tQbHXVaZsr3pf66A48miqcBXCDJozganhEJgz");
137
138pub const TREASURY_ADDRESS: Pubkey =
140 Pubkey::new_from_array(ed25519::derive_program_address(&[TREASURY], &PROGRAM_ID).0);
141
142pub const TREASURY_BUMP: u8 = ed25519::derive_program_address(&[TREASURY], &PROGRAM_ID).1;
144
145pub const TREASURY_TOKENS_ADDRESS: Pubkey = Pubkey::new_from_array(
147 ed25519::derive_program_address(
148 &[
149 unsafe { &*(&TREASURY_ADDRESS as *const Pubkey as *const [u8; 32]) },
150 unsafe { &*(&spl_token::id() as *const Pubkey as *const [u8; 32]) },
151 unsafe { &*(&MINT_ADDRESS as *const Pubkey as *const [u8; 32]) },
152 ],
153 unsafe { &*(&spl_associated_token_account::id() as *const Pubkey as *const [u8; 32]) },
154 )
155 .0,
156);
157
158pub const NOOP_PROGRAM_ID: Pubkey = pubkey!("noop8ytexvkpCuqbf6FB89BSuNemHtPRqaNC31GWivW");