Skip to content

Commit

Permalink
Merge branch 'main' into eyqs/NES-191
Browse files Browse the repository at this point in the history
  • Loading branch information
eyqs committed Sep 14, 2024
2 parents eee016b + 24e9524 commit 00f841d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nest/script/DeployNestContracts.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import { NestStakingProxy } from "../src/proxies/NestStakingProxy.sol";
contract DeployNestContracts is Script {

address private constant ARC_ADMIN_ADDRESS = 0x1c9d94FAD4ccCd522804a955103899e0D6A4405a;
address private constant NEST_ADMIN_ADDRESS = 0xb015762405De8fD24d29A6e0799c12e0Ea81c1Ff;
address private constant USDC_ADDRESS = 0x849c25e6cCB03cdc23ba91d92440dA7bC8486be2;

function run() external {
Expand All @@ -35,7 +36,7 @@ contract DeployNestContracts is Script {
abi.encodeCall(
AggregateToken.initialize,
(
ARC_ADMIN_ADDRESS,
NEST_ADMIN_ADDRESS,
"Apple",
"AAPL",
USDC_ADDRESS,
Expand All @@ -50,7 +51,7 @@ contract DeployNestContracts is Script {

NestStaking nestStaking = new NestStaking();
NestStakingProxy nestStakingProxy =
new NestStakingProxy(address(nestStaking), abi.encodeCall(NestStaking.initialize, (ARC_ADMIN_ADDRESS)));
new NestStakingProxy(address(nestStaking), abi.encodeCall(NestStaking.initialize, (NEST_ADMIN_ADDRESS)));
console.log("NestStakingProxy deployed to:", address(nestStakingProxy));

vm.stopBroadcast();
Expand Down

0 comments on commit 00f841d

Please sign in to comment.