generated from foundry-rs/forge-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathPufferModuleManager.sol
420 lines (369 loc) · 15.3 KB
/
PufferModuleManager.sol
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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.8.0 <0.9.0;
import { IPufferModule } from "puffer/interface/IPufferModule.sol";
import { IPufferProtocol } from "puffer/interface/IPufferProtocol.sol";
import { Unauthorized } from "puffer/Errors.sol";
import { IRestakingOperator } from "puffer/interface/IRestakingOperator.sol";
import { IPufferProtocol } from "puffer/interface/IPufferProtocol.sol";
import { PufferModule } from "puffer/PufferModule.sol";
import { RestakingOperator } from "puffer/RestakingOperator.sol";
import { IPufferModuleManager } from "puffer/interface/IPufferModuleManager.sol";
import { BeaconProxy } from "openzeppelin/proxy/beacon/BeaconProxy.sol";
import { Create2 } from "openzeppelin/utils/Create2.sol";
import { AccessManagedUpgradeable } from "openzeppelin-upgradeable/access/manager/AccessManagedUpgradeable.sol";
import { UUPSUpgradeable } from "openzeppelin-upgradeable/proxy/utils/UUPSUpgradeable.sol";
import { IDelegationManager } from "eigenlayer/interfaces/IDelegationManager.sol";
import { ISignatureUtils } from "eigenlayer/interfaces/ISignatureUtils.sol";
import { BeaconChainProofs } from "eigenlayer/libraries/BeaconChainProofs.sol";
import { IERC20 } from "openzeppelin/token/ERC20/IERC20.sol";
import { IRegistryCoordinator, IBLSApkRegistry } from "eigenlayer-middleware/interfaces/IRegistryCoordinator.sol";
import { AVSContractsRegistry } from "puffer/AVSContractsRegistry.sol";
/**
* @title PufferModuleManager
* @author Puffer Finance
* @custom:security-contact security@puffer.fi
*/
contract PufferModuleManager is IPufferModuleManager, AccessManagedUpgradeable, UUPSUpgradeable {
/**
* @inheritdoc IPufferModuleManager
*/
address public immutable override PUFFER_MODULE_BEACON;
/**
* @inheritdoc IPufferModuleManager
*/
address public immutable override RESTAKING_OPERATOR_BEACON;
/**
* @inheritdoc IPufferModuleManager
*/
address public immutable override PUFFER_PROTOCOL;
/**
* @dev AVS contracts registry
*/
AVSContractsRegistry public immutable AVS_CONTRACTS_REGISTRY;
modifier onlyPufferProtocol() {
if (msg.sender != PUFFER_PROTOCOL) {
revert Unauthorized();
}
_;
}
constructor(
address pufferModuleBeacon,
address restakingOperatorBeacon,
address pufferProtocol,
AVSContractsRegistry avsContractsRegistry
) {
PUFFER_MODULE_BEACON = pufferModuleBeacon;
RESTAKING_OPERATOR_BEACON = restakingOperatorBeacon;
PUFFER_PROTOCOL = pufferProtocol;
AVS_CONTRACTS_REGISTRY = avsContractsRegistry;
_disableInitializers();
}
/**
* @notice Initializes the contract
*/
function initialize(address accessManager) external initializer {
__AccessManaged_init(accessManager);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted in this context is like `whenNotPaused` modifier from Pausable.sol
*/
function callVerifyWithdrawalCredentials(
bytes32 moduleName,
uint64 oracleTimestamp,
BeaconChainProofs.StateRootProof calldata stateRootProof,
uint40[] calldata validatorIndices,
bytes[] calldata validatorFieldsProofs,
bytes32[][] calldata validatorFields
) external virtual restricted {
address moduleAddress = IPufferProtocol(PUFFER_PROTOCOL).getModuleAddress(moduleName);
IPufferModule(moduleAddress).verifyWithdrawalCredentials({
oracleTimestamp: oracleTimestamp,
stateRootProof: stateRootProof,
validatorIndices: validatorIndices,
validatorFieldsProofs: validatorFieldsProofs,
validatorFields: validatorFields
});
emit ValidatorCredentialsVerified(moduleName, validatorIndices);
}
/**
* @notice Completes queued withdrawals
* @dev Restricted to Puffer Paymaster
*/
function callCompleteQueuedWithdrawals(
bytes32 moduleName,
IDelegationManager.Withdrawal[] calldata withdrawals,
IERC20[][] calldata tokens,
uint256[] calldata middlewareTimesIndexes,
bool[] calldata receiveAsTokens
) external virtual restricted {
address moduleAddress = IPufferProtocol(PUFFER_PROTOCOL).getModuleAddress(moduleName);
IPufferModule(moduleAddress).completeQueuedWithdrawals({
withdrawals: withdrawals,
tokens: tokens,
middlewareTimesIndexes: middlewareTimesIndexes,
receiveAsTokens: receiveAsTokens
});
uint256 sharesWithdrawn;
for (uint256 i = 0; i < withdrawals.length; i++) {
for (uint256 j = 0; j < withdrawals[i].shares.length; j++) {
sharesWithdrawn += withdrawals[i].shares[j];
}
}
emit CompletedQueuedWithdrawals(moduleName, sharesWithdrawn);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to the PufferProtocol
* @param moduleName The name of the module
*/
function createNewPufferModule(bytes32 moduleName) external virtual onlyPufferProtocol returns (IPufferModule) {
if (moduleName == bytes32("NO_VALIDATORS")) {
revert ForbiddenModuleName();
}
// This called from the PufferProtocol and the event is emitted there
return IPufferModule(
Create2.deploy({
amount: 0,
salt: moduleName,
bytecode: abi.encodePacked(
type(BeaconProxy).creationCode,
abi.encode(PUFFER_MODULE_BEACON, abi.encodeCall(PufferModule.initialize, (moduleName, authority())))
)
})
);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to Puffer Paymaster
*/
function callVerifyAndProcessWithdrawals(
bytes32 moduleName,
uint64 oracleTimestamp,
BeaconChainProofs.StateRootProof calldata stateRootProof,
BeaconChainProofs.WithdrawalProof[] calldata withdrawalProofs,
bytes[] calldata validatorFieldsProofs,
bytes32[][] calldata validatorFields,
bytes32[][] calldata withdrawalFields
) external virtual restricted {
address moduleAddress = IPufferProtocol(PUFFER_PROTOCOL).getModuleAddress(moduleName);
IPufferModule(moduleAddress).verifyAndProcessWithdrawals({
oracleTimestamp: oracleTimestamp,
stateRootProof: stateRootProof,
withdrawalProofs: withdrawalProofs,
validatorFieldsProofs: validatorFieldsProofs,
validatorFields: validatorFields,
withdrawalFields: withdrawalFields
});
emit VerifiedAndProcessedWithdrawals(moduleName, validatorFields, withdrawalFields);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to Puffer Paymaster
*/
function callWithdrawNonBeaconChainETHBalanceWei(bytes32 moduleName, uint256 amountToWithdraw)
external
virtual
restricted
{
address moduleAddress = IPufferProtocol(PUFFER_PROTOCOL).getModuleAddress(moduleName);
IPufferModule(moduleAddress).withdrawNonBeaconChainETHBalanceWei(amountToWithdraw);
emit NonBeaconChainETHBalanceWithdrawn(moduleName, amountToWithdraw);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to Puffer Paymaster
*/
function callQueueWithdrawals(bytes32 moduleName, uint256 sharesAmount) external virtual restricted {
address moduleAddress = IPufferProtocol(PUFFER_PROTOCOL).getModuleAddress(moduleName);
bytes32[] memory withdrawalRoots = IPufferModule(moduleAddress).queueWithdrawals(sharesAmount);
emit WithdrawalsQueued(moduleName, sharesAmount, withdrawalRoots[0]);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to the DAO
*/
function createNewRestakingOperator(
string calldata metadataURI,
address delegationApprover,
uint32 stakerOptOutWindowBlocks
) external virtual restricted returns (IRestakingOperator) {
IDelegationManager.OperatorDetails memory operatorDetails = IDelegationManager.OperatorDetails({
earningsReceiver: address(this),
delegationApprover: delegationApprover,
stakerOptOutWindowBlocks: stakerOptOutWindowBlocks
});
address restakingOperator = Create2.deploy({
amount: 0,
salt: keccak256(abi.encode(metadataURI)),
bytecode: abi.encodePacked(
type(BeaconProxy).creationCode,
abi.encode(
RESTAKING_OPERATOR_BEACON,
abi.encodeCall(RestakingOperator.initialize, (authority(), operatorDetails, metadataURI))
)
)
});
emit RestakingOperatorCreated(restakingOperator, operatorDetails);
return IRestakingOperator(restakingOperator);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to the DAO
*/
function callModifyOperatorDetails(
IRestakingOperator restakingOperator,
IDelegationManager.OperatorDetails calldata newOperatorDetails
) external virtual restricted {
restakingOperator.modifyOperatorDetails(newOperatorDetails);
emit RestakingOperatorModified(address(restakingOperator), newOperatorDetails);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to the DAO
*/
function callUpdateMetadataURI(IRestakingOperator restakingOperator, string calldata metadataURI)
external
virtual
restricted
{
restakingOperator.updateOperatorMetadataURI(metadataURI);
emit RestakingOperatorMetadataURIUpdated(address(restakingOperator), metadataURI);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to the DAO
*/
function callOptIntoSlashing(IRestakingOperator restakingOperator, address slasher) external virtual restricted {
restakingOperator.optIntoSlashing(slasher);
emit RestakingOperatorOptedInSlasher(address(restakingOperator), slasher);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to the DAO
*/
function callDelegateTo(
bytes32 moduleName,
address operator,
ISignatureUtils.SignatureWithExpiry calldata approverSignatureAndExpiry,
bytes32 approverSalt
) external virtual restricted {
address moduleAddress = IPufferProtocol(PUFFER_PROTOCOL).getModuleAddress(moduleName);
IPufferModule(moduleAddress).callDelegateTo(operator, approverSignatureAndExpiry, approverSalt);
emit PufferModuleDelegated(moduleName, operator);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to the DAO
*/
function callUndelegate(bytes32 moduleName) external virtual restricted returns (bytes32[] memory withdrawalRoot) {
address moduleAddress = IPufferProtocol(PUFFER_PROTOCOL).getModuleAddress(moduleName);
withdrawalRoot = IPufferModule(moduleAddress).callUndelegate();
emit PufferModuleUndelegated(moduleName);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to the DAO
*/
function callRegisterOperatorToAVS(
IRestakingOperator restakingOperator,
address avsRegistryCoordinator,
bytes calldata quorumNumbers,
string calldata socket,
IBLSApkRegistry.PubkeyRegistrationParams calldata params,
ISignatureUtils.SignatureWithSaltAndExpiry calldata operatorSignature
) external virtual restricted {
restakingOperator.registerOperatorToAVS({
avsRegistryCoordinator: avsRegistryCoordinator,
quorumNumbers: quorumNumbers,
socket: socket,
params: params,
operatorSignature: operatorSignature
});
emit RestakingOperatorRegisteredToAVS(restakingOperator, avsRegistryCoordinator, quorumNumbers, socket);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to the DAO
*/
function callRegisterOperatorToAVSWithChurn(
IRestakingOperator restakingOperator,
address avsRegistryCoordinator,
bytes calldata quorumNumbers,
string calldata socket,
IBLSApkRegistry.PubkeyRegistrationParams calldata params,
IRegistryCoordinator.OperatorKickParam[] calldata operatorKickParams,
ISignatureUtils.SignatureWithSaltAndExpiry calldata churnApproverSignature,
ISignatureUtils.SignatureWithSaltAndExpiry calldata operatorSignature
) external virtual restricted {
restakingOperator.registerOperatorToAVSWithChurn({
avsRegistryCoordinator: avsRegistryCoordinator,
quorumNumbers: quorumNumbers,
socket: socket,
params: params,
operatorKickParams: operatorKickParams,
churnApproverSignature: churnApproverSignature,
operatorSignature: operatorSignature
});
emit RestakingOperatorRegisteredToAVSWithChurn({
restakingOperator: restakingOperator,
avsRegistryCoordinator: avsRegistryCoordinator,
quorumNumbers: quorumNumbers,
socket: socket,
operatorKickParams: operatorKickParams
});
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to the DAO
*/
function customExternalCall(IRestakingOperator restakingOperator, address target, bytes calldata customCalldata)
external
virtual
restricted
{
// Custom external calls are only allowed to whitelisted registry coordinators
if (!AVS_CONTRACTS_REGISTRY.isAllowedRegistryCoordinator(target, customCalldata)) {
revert Unauthorized();
}
bytes memory response = restakingOperator.customCalldataCall(target, customCalldata);
emit CustomCallSucceeded(address(restakingOperator), target, customCalldata, response);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to the DAO
*/
function callDeregisterOperatorFromAVS(
IRestakingOperator restakingOperator,
address avsRegistryCoordinator,
bytes calldata quorumNumbers
) external virtual restricted {
restakingOperator.deregisterOperatorFromAVS(avsRegistryCoordinator, quorumNumbers);
emit RestakingOperatorDeregisteredFromAVS(restakingOperator, avsRegistryCoordinator, quorumNumbers);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to the DAO
*/
function callUpdateOperatorAVSSocket(
IRestakingOperator restakingOperator,
address avsRegistryCoordinator,
string memory socket
) external virtual restricted {
restakingOperator.updateOperatorAVSSocket(avsRegistryCoordinator, socket);
emit RestakingOperatorAVSSocketUpdated(restakingOperator, avsRegistryCoordinator, socket);
}
/**
* @inheritdoc IPufferModuleManager
* @dev Restricted to the DAO
*/
function updateAVSRegistrationSignatureProof(
IRestakingOperator restakingOperator,
bytes32 digestHash,
address signer
) external virtual restricted {
restakingOperator.updateSignatureProof(digestHash, signer);
emit AVSRegistrationSignatureProofUpdated(address(restakingOperator), digestHash, signer);
}
function _authorizeUpgrade(address newImplementation) internal virtual override restricted { }
}