Skip to content

Commit

Permalink
Update whale address
Browse files Browse the repository at this point in the history
  • Loading branch information
shahthepro committed Jun 7, 2024
1 parent 5e20202 commit 5806608
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/staking/MigratorForkTest.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ contract MigratorForkTest is Test {
IMintableERC20 public ogn;

uint256 constant OGN_EPOCH = 1717041600; // May 30, 2024 GMT
address public ogvWhale = 0x24dD9AEAf497c11eE3A0ac2E6E6e014e12799c4E;
address public ogvWhale = 0xD066c92d5dD4fD19E7F053Cf63EBB01Aaaa233CE;

constructor() {
deployManager = new DeployManager();
Expand All @@ -46,6 +46,10 @@ contract MigratorForkTest is Test {
ogv.approve(address(veogv), type(uint256).max);
vm.stopPrank();

vm.startPrank(Addresses.TIMELOCK);
ogn.mint(ogvWhale, 10_000_000 ether); // Mint some OGV for the whale
vm.stopPrank();

vm.warp(OGN_EPOCH + 100 days);

if (veogv.balanceOf(ogvWhale) == 0) {
Expand Down
4 changes: 4 additions & 0 deletions tests/staking/ZapperForkTest.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ contract ZapperForkTest is Test {
ogv.approve(address(veogv), type(uint256).max);
vm.stopPrank();

vm.startPrank(Addresses.TIMELOCK);
ogn.mint(ogvWhale, 10_000_000 ether); // Mint some OGV for the whale
vm.stopPrank();

vm.warp(OGN_EPOCH + 100 days);

if (veogv.balanceOf(ogvWhale) == 0) {
Expand Down

0 comments on commit 5806608

Please sign in to comment.