Skip to content

Commit

Permalink
fix: timelock eta
Browse files Browse the repository at this point in the history
  • Loading branch information
ypatil12 committed Sep 17, 2024
1 parent fb08495 commit d6c0eb3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions script/deploy/mainnet/v0.4.3-upgrade_rewardsCoordinator.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ import "script/utils/TimelockEncoding.sol";
contract Upgrade_Mainnet_RewardsCoordinator is ExistingDeploymentParser, TimelockEncoding {

// CALLDATA FOR CALL TO TIMELOCK
// TUESDAY, SEPTEMBER 17 2024 22:00:00 GMT (6pm EST/3pm PST)
uint256 timelockEta = 1727215200;
// TUESDAY, SEPTEMBER 27 2024 19:00:00 GMT (3pm EST/12pm PST)
uint256 timelockEta = 1727463600;

uint256 dayToQueueAction = 1726599600;

// Calldatas for upgrading RC
bytes final_calldata_to_executor_multisig;
Expand Down Expand Up @@ -120,7 +122,9 @@ contract Upgrade_Mainnet_RewardsCoordinator is ExistingDeploymentParser, Timeloc
}

function test_mainnet_rc_upgrade() public {
run();
run();

vm.warp(dayToQueueAction);

// Queue Transaction
vm.prank(operationsMultisig);
Expand Down

0 comments on commit d6c0eb3

Please sign in to comment.