From 3f01779c69ca06a016b7fc53dec7afbc3aa5ff81 Mon Sep 17 00:00:00 2001 From: Hardhat Chad Date: Wed, 13 Aug 2025 14:35:45 -0700 Subject: [PATCH] update boost reserve --- api/src/consts.rs | 2 +- program/src/reset.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/src/consts.rs b/api/src/consts.rs index f936b83..adddf40 100644 --- a/api/src/consts.rs +++ b/api/src/consts.rs @@ -74,4 +74,4 @@ pub const HASHPOWER_LIQUIDITY: u64 = 1_000_000; pub const ORE_LIQUIDITY: u64 = ONE_ORE * 100; /// The address of the boost reserve token account. -pub const BOOST_RESERVE_TOKEN: Pubkey = pubkey!("5zGJbZ4ZVJ2SNyk34cQoNrmuyJTqqCmTv9crseyFHeww"); // TODO: change this +pub const BOOST_RESERVE_TOKEN: Pubkey = pubkey!("Gce36ZUsBDJsoLrfCBxUB5Sfq2DsGunofStvxFx6rBiD"); diff --git a/program/src/reset.rs b/program/src/reset.rs index 3485070..7fb65a3 100644 --- a/program/src/reset.rs +++ b/program/src/reset.rs @@ -117,7 +117,7 @@ pub fn process_reset(accounts: &[AccountInfo<'_>], _data: &[u8]) -> ProgramResul reserve_tokens_info, treasury_info, token_program, - ONE_ORE / 2, + ONE_ORE / 2, // TODO This should be about 2-5 &[TREASURY], )?;