-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathMevCaptureHook.sol
More file actions
374 lines (300 loc) · 13.6 KB
/
Copy pathMevCaptureHook.sol
File metadata and controls
374 lines (300 loc) · 13.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.24;
import { Math } from "@openzeppelin/contracts/utils/math/Math.sol";
import {
IBalancerContractRegistry
} from "@balancer-labs/v3-interfaces/contracts/standalone-utils/IBalancerContractRegistry.sol";
import { ISenderGuard } from "@balancer-labs/v3-interfaces/contracts/vault/ISenderGuard.sol";
import { IMevCaptureHook } from "@balancer-labs/v3-interfaces/contracts/pool-hooks/IMevCaptureHook.sol";
import { IHooks } from "@balancer-labs/v3-interfaces/contracts/vault/IHooks.sol";
import { IVault } from "@balancer-labs/v3-interfaces/contracts/vault/IVault.sol";
import {
AddLiquidityKind,
HooksConfig,
HookFlags,
LiquidityManagement,
PoolSwapParams,
RemoveLiquidityKind,
TokenConfig,
MAX_FEE_PERCENTAGE
} from "@balancer-labs/v3-interfaces/contracts/vault/VaultTypes.sol";
import { SingletonAuthentication } from "@balancer-labs/v3-vault/contracts/SingletonAuthentication.sol";
import { VaultGuard } from "@balancer-labs/v3-vault/contracts/VaultGuard.sol";
import { BaseHooks } from "@balancer-labs/v3-vault/contracts/BaseHooks.sol";
contract MevCaptureHook is BaseHooks, SingletonAuthentication, VaultGuard, IMevCaptureHook {
// Max Fee is 99.9999% (Max supported fee by the vault).
uint256 private constant _MEV_MAX_FEE_PERCENTAGE = MAX_FEE_PERCENTAGE;
IBalancerContractRegistry internal immutable _registry;
bool internal _mevTaxEnabled;
// Global default parameter values.
uint256 internal _defaultMevTaxThreshold;
uint256 internal _defaultMevTaxMultiplier;
// Global max dynamic swap fee percentage returned by this hook.
uint256 internal _maxMevSwapFeePercentage;
// Global list of senders that bypass the MEV tax and always pay the static fee percentage.
mapping(address => bool) internal _isMevTaxExemptSender;
// Pool-specific parameters.
mapping(address => uint256) internal _poolMevTaxThresholds;
mapping(address => uint256) internal _poolMevTaxMultipliers;
modifier withMevTaxEnabledPool(address pool) {
HooksConfig memory hooksConfig = _vault.getHooksConfig(pool);
if (hooksConfig.hooksContract != address(this)) {
revert MevCaptureHookNotRegisteredInPool(pool);
}
_;
}
constructor(
IVault vault,
IBalancerContractRegistry registry,
uint256 defaultMevTaxMultiplier,
uint256 defaultMevTaxThreshold
) SingletonAuthentication(vault) VaultGuard(vault) {
_registry = registry;
// Smoke test to ensure the given registry is a contract and isn't hard-coded to trust everything.
// For certainty, users can call `getBalancerContractRegistry` and compare the result to the published address.
if (registry.isTrustedRouter(address(0))) {
revert InvalidBalancerContractRegistry();
}
// Default to enabled and externally-provided default numerical values to reduce the need for further
// governance actions.
_setMevTaxEnabled(true);
_setDefaultMevTaxMultiplier(defaultMevTaxMultiplier);
_setDefaultMevTaxThreshold(defaultMevTaxThreshold);
// Default to the maximum value allowed by the Vault.
_setMaxMevSwapFeePercentage(_MEV_MAX_FEE_PERCENTAGE);
}
function getBalancerContractRegistry() external view returns (IBalancerContractRegistry) {
return _registry;
}
/// @inheritdoc IHooks
function onRegister(
address,
address pool,
TokenConfig[] memory,
LiquidityManagement calldata
) public override onlyVault returns (bool) {
_poolMevTaxMultipliers[pool] = _defaultMevTaxMultiplier;
_poolMevTaxThresholds[pool] = _defaultMevTaxThreshold;
return true;
}
/// @inheritdoc IHooks
function getHookFlags() public pure override returns (HookFlags memory) {
HookFlags memory hookFlags;
// The MEV Tax is charged as a swap fee. Searcher transactions pay a higher swap fee percentage.
hookFlags.shouldCallComputeDynamicSwapFee = true;
hookFlags.shouldCallBeforeAddLiquidity = true;
hookFlags.shouldCallBeforeRemoveLiquidity = true;
return hookFlags;
}
/// @inheritdoc IHooks
function onComputeDynamicSwapFeePercentage(
PoolSwapParams calldata params,
address pool,
uint256 staticSwapFeePercentage
) public view override returns (bool, uint256) {
if (_mevTaxEnabled == false) {
return (true, staticSwapFeePercentage);
}
// We can only check senders if the router is trusted. Apply the exemption for MEV tax-exempt senders.
if (_registry.isTrustedRouter(params.router)) {
address sender = ISenderGuard(params.router).getSender();
if (_isMevTaxExemptSender[sender]) {
return (true, staticSwapFeePercentage);
}
}
return (
true,
_calculateSwapFeePercentage(
staticSwapFeePercentage,
_poolMevTaxMultipliers[pool],
_poolMevTaxThresholds[pool]
)
);
}
/// @inheritdoc IHooks
function onBeforeAddLiquidity(
address,
address pool,
AddLiquidityKind kind,
uint256[] memory,
uint256,
uint256[] memory,
bytes memory
) public view override returns (bool success) {
if (_mevTaxEnabled == false) {
return true;
}
uint256 priorityGasPrice = _getPriorityGasPrice();
// Allow proportional operations, or unbalanced operations within the threshold.
return kind == AddLiquidityKind.PROPORTIONAL || priorityGasPrice <= _poolMevTaxThresholds[pool];
}
/// @inheritdoc IHooks
function onBeforeRemoveLiquidity(
address,
address pool,
RemoveLiquidityKind kind,
uint256,
uint256[] memory,
uint256[] memory,
bytes memory
) public view override returns (bool success) {
if (_mevTaxEnabled == false) {
return true;
}
uint256 priorityGasPrice = _getPriorityGasPrice();
// Allow proportional operations, or unbalanced operations within the threshold.
return kind == RemoveLiquidityKind.PROPORTIONAL || priorityGasPrice <= _poolMevTaxThresholds[pool];
}
/// @inheritdoc IMevCaptureHook
function isMevTaxEnabled() external view returns (bool) {
return _mevTaxEnabled;
}
/// @inheritdoc IMevCaptureHook
function disableMevTax() external authenticate {
_setMevTaxEnabled(false);
}
/// @inheritdoc IMevCaptureHook
function enableMevTax() external authenticate {
_setMevTaxEnabled(true);
}
function _setMevTaxEnabled(bool value) private {
_mevTaxEnabled = value;
emit MevTaxEnabledSet(value);
}
/// @inheritdoc IMevCaptureHook
function getMaxMevSwapFeePercentage() external view returns (uint256) {
return _maxMevSwapFeePercentage;
}
/// @inheritdoc IMevCaptureHook
function setMaxMevSwapFeePercentage(uint256 maxMevSwapFeePercentage) external authenticate {
_setMaxMevSwapFeePercentage(maxMevSwapFeePercentage);
}
function _setMaxMevSwapFeePercentage(uint256 maxMevSwapFeePercentage) internal {
if (maxMevSwapFeePercentage > _MEV_MAX_FEE_PERCENTAGE) {
revert MevSwapFeePercentageAboveMax(maxMevSwapFeePercentage, _MEV_MAX_FEE_PERCENTAGE);
}
_maxMevSwapFeePercentage = maxMevSwapFeePercentage;
emit MaxMevSwapFeePercentageSet(maxMevSwapFeePercentage);
}
/// @inheritdoc IMevCaptureHook
function getDefaultMevTaxMultiplier() external view returns (uint256) {
return _defaultMevTaxMultiplier;
}
/// @inheritdoc IMevCaptureHook
function setDefaultMevTaxMultiplier(uint256 newDefaultMevTaxMultiplier) external authenticate {
_setDefaultMevTaxMultiplier(newDefaultMevTaxMultiplier);
}
function _setDefaultMevTaxMultiplier(uint256 newDefaultMevTaxMultiplier) private {
_defaultMevTaxMultiplier = newDefaultMevTaxMultiplier;
emit DefaultMevTaxMultiplierSet(newDefaultMevTaxMultiplier);
}
/// @inheritdoc IMevCaptureHook
function getPoolMevTaxMultiplier(address pool) external view withMevTaxEnabledPool(pool) returns (uint256) {
return _poolMevTaxMultipliers[pool];
}
/// @inheritdoc IMevCaptureHook
function setPoolMevTaxMultiplier(
address pool,
uint256 newPoolMevTaxMultiplier
) external withMevTaxEnabledPool(pool) onlySwapFeeManagerOrGovernance(pool) {
_setPoolMevTaxMultiplier(pool, newPoolMevTaxMultiplier);
}
function _setPoolMevTaxMultiplier(address pool, uint256 newPoolMevTaxMultiplier) private {
_poolMevTaxMultipliers[pool] = newPoolMevTaxMultiplier;
emit PoolMevTaxMultiplierSet(pool, newPoolMevTaxMultiplier);
}
/// @inheritdoc IMevCaptureHook
function getDefaultMevTaxThreshold() external view returns (uint256) {
return _defaultMevTaxThreshold;
}
/// @inheritdoc IMevCaptureHook
function setDefaultMevTaxThreshold(uint256 newDefaultMevTaxThreshold) external authenticate {
_setDefaultMevTaxThreshold(newDefaultMevTaxThreshold);
}
function _setDefaultMevTaxThreshold(uint256 newDefaultMevTaxThreshold) private {
_defaultMevTaxThreshold = newDefaultMevTaxThreshold;
emit DefaultMevTaxThresholdSet(newDefaultMevTaxThreshold);
}
/// @inheritdoc IMevCaptureHook
function getPoolMevTaxThreshold(address pool) external view withMevTaxEnabledPool(pool) returns (uint256) {
return _poolMevTaxThresholds[pool];
}
/// @inheritdoc IMevCaptureHook
function setPoolMevTaxThreshold(
address pool,
uint256 newPoolMevTaxThreshold
) external withMevTaxEnabledPool(pool) onlySwapFeeManagerOrGovernance(pool) {
_setPoolMevTaxThreshold(pool, newPoolMevTaxThreshold);
}
/// @inheritdoc IMevCaptureHook
function isMevTaxExemptSender(address sender) external view returns (bool) {
return _isMevTaxExemptSender[sender];
}
/// @inheritdoc IMevCaptureHook
function addMevTaxExemptSenders(address[] memory senders) external authenticate {
uint256 numSenders = senders.length;
for (uint256 i = 0; i < numSenders; ++i) {
_addMevTaxExemptSender(senders[i]);
}
}
/// @inheritdoc IMevCaptureHook
function removeMevTaxExemptSenders(address[] memory senders) external authenticate {
uint256 numSenders = senders.length;
for (uint256 i = 0; i < numSenders; ++i) {
_removeMevTaxExemptSender(senders[i]);
}
}
/*******************************************************
Helper functions
*******************************************************/
function _calculateSwapFeePercentage(
uint256 staticSwapFeePercentage,
uint256 multiplier,
uint256 threshold
) internal view returns (uint256) {
// If gasprice is lower than basefee, the transaction is invalid and won't be processed. Gasprice is set
// by the transaction sender, is always bigger than basefee, and the difference between gasprice and basefee
// defines the priority gas price (the part of the gas cost that will be paid to the validator).
uint256 priorityGasPrice = _getPriorityGasPrice();
uint256 maxMevSwapFeePercentage = _maxMevSwapFeePercentage;
// If `priorityGasPrice` <= threshold, this indicates the transaction is from a retail user, so we should not
// impose the MEV tax. Also, if mev fee cap is <= static fee percentage, returns the static fee percentage.
if (priorityGasPrice <= threshold || maxMevSwapFeePercentage <= staticSwapFeePercentage) {
return staticSwapFeePercentage;
}
(bool success, uint256 feeIncrement) = Math.tryMul(priorityGasPrice - threshold, multiplier);
// If success == false, an overflow occurred, so we should return the max fee.
if (success == false) {
return maxMevSwapFeePercentage;
}
// Math.tryMul is not an operation with 18-decimals number, so we need to fix the result dividing by 1e18.
feeIncrement = feeIncrement / 1e18;
// At this point, `priorityGasPrice >= threshold` and `maxMevSwapFeePercentage >= staticSwapFeePercentage`.
// `staticSwapFeePercentage` cannot be greater than 1e18, so there is no need to check if
// `staticSwapFeePercentage + feeIncrement` overflows.
uint256 mevSwapFeePercentage = staticSwapFeePercentage + feeIncrement;
// Cap the maximum fee at `maxMevSwapFeePercentage`.
return Math.min(mevSwapFeePercentage, maxMevSwapFeePercentage);
}
function _setPoolMevTaxThreshold(address pool, uint256 newPoolMevTaxThreshold) private {
_poolMevTaxThresholds[pool] = newPoolMevTaxThreshold;
emit PoolMevTaxThresholdSet(pool, newPoolMevTaxThreshold);
}
function _getPriorityGasPrice() internal view returns (uint256) {
return tx.gasprice - block.basefee;
}
function _addMevTaxExemptSender(address sender) internal {
if (_isMevTaxExemptSender[sender]) {
revert MevTaxExemptSenderAlreadyAdded(sender);
}
_isMevTaxExemptSender[sender] = true;
emit MevTaxExemptSenderAdded(sender);
}
function _removeMevTaxExemptSender(address sender) internal {
if (_isMevTaxExemptSender[sender] == false) {
revert SenderNotRegisteredAsMevTaxExempt(sender);
}
_isMevTaxExemptSender[sender] = false;
emit MevTaxExemptSenderRemoved(sender);
}
}