We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d66682 commit 3bdbf99Copy full SHA for 3bdbf99
src/EulerSwapProtocolFeeConfig.sol
@@ -43,6 +43,10 @@ contract EulerSwapProtocolFeeConfig is EVCUtil {
43
_;
44
}
45
46
+ function setAdmin(address newAdmin) external onlyAdmin {
47
+ admin = newAdmin;
48
+ }
49
+
50
function setDefault(address recipient, uint64 fee) external onlyAdmin {
51
require(fee <= MAX_PROTOCOL_FEE, InvalidProtocolFee());
52
0 commit comments