Skip to content

Commit

Permalink
[2024-10-15] update the eETH fee recipient treasury address
Browse files Browse the repository at this point in the history
  • Loading branch information
seongyun-ko committed Oct 15, 2024
1 parent 19697e9 commit a0ac2bb
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"data": "0x134008d3000000000000000000000000308861a430be4cce5502d0a12724771fc6daf216000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024f0f442600000000000000000000000000c83eae1fe72c390a02e426572854931eeff93ba00000000000000000000000000000000000000000000000000000000",
"to": "0x9f26d4C958fD811A1F59B01B86Be7dFFc9d20761",
"value": 0
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"data": "0x01d5062a000000000000000000000000308861a430be4cce5502d0a12724771fc6daf216000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003f4800000000000000000000000000000000000000000000000000000000000000024f0f442600000000000000000000000000c83eae1fe72c390a02e426572854931eeff93ba00000000000000000000000000000000000000000000000000000000",
"to": "0x9f26d4C958fD811A1F59B01B86Be7dFFc9d20761",
"value": 0
}
10 changes: 10 additions & 0 deletions test/EtherFiTimelock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,16 @@ contract TimelockTest is TestSetup {
bytes memory data = abi.encodeWithSelector(EtherFiNodesManager.updateAllowedForwardedExternalCalls.selector, selector, 0x7750d328b314EfFa365A0402CcfD489B80B0adda, true);
_execute_timelock(target, data, true, true, true, true);
}

function test_update_treasury() public {
{
initializeRealisticFork(MAINNET_FORK);
address target =
address(liquidityPoolInstance);
bytes memory data = abi.encodeWithSelector(LiquidityPool.setTreasury.selector, 0x0c83EAe1FE72c390A02E426572854931EefF93BA);
_execute_timelock(target, data, true, true, true, true);
}
}
}

// {"version":"1.0","chainId":"1

0 comments on commit a0ac2bb

Please sign in to comment.