Skip to content

Commit

Permalink
Rename and alter
Browse files Browse the repository at this point in the history
  • Loading branch information
enriquefynn committed Aug 14, 2024
1 parent d577b98 commit b600529
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions script/ChangeFee.s.sol → script/ChangeDefaultFee.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,8 @@ contract ChangeFee is Script {
payable(address(vm.envAddress("FEE_REWARDS_MANAGER")))
)
);
address payable addr = payable(
feeRewardsManager.predictFeeContractAddress(
vm.envAddress("WITHDRAWAL_CREDENTIAL")
)
);
vm.startBroadcast();
feeRewardsManager.changeFeeNumerator(
addr,
uint32(vm.envUint("NEW_FEE"))
);
feeRewardsManager.changeDefaultFee(uint32(vm.envUint("NEW_FEE")));
vm.stopBroadcast();
}
}

0 comments on commit b600529

Please sign in to comment.