File tree
3 files changed
+9
-11
lines changed- contracts
- lib
- script
- src
3 files changed
+9
-11
lines changedSubmodule eigenlayer-middleware updated 48 files
- LICENSE+29-3
- docs/README.md+2-2
- docs/ServiceManagerBase.md+1-1
- docs/experimental/AVS-Guide.md+1-1
- foundry.toml+1
- lib/eigenlayer-contracts+1-1
- src/BLSApkRegistry.sol+8-4
- src/BLSSignatureChecker.sol+116-62
- src/EjectionManager.sol+14-21
- src/IndexRegistry.sol+5-1
- src/OperatorStateRetriever.sol+33
- src/RegistryCoordinator.sol+52-9
- src/RegistryCoordinatorStorage.sol+6-1
- src/ServiceManagerBase.sol+85-49
- src/ServiceManagerBaseStorage.sol+53
- src/StakeRegistry.sol+22-10
- src/interfaces/IECDSAStakeRegistryEventsAndErrors.sol+24-3
- src/interfaces/IEjectionManager.sol+3-3
- src/interfaces/IServiceManager.sol+12-11
- src/interfaces/IServiceManagerUI.sol+2-3
- src/unaudited/ECDSAServiceManagerBase.sol+283
- src/unaudited/ECDSAStakeRegistry.sol+204-75
- src/unaudited/ECDSAStakeRegistryStorage.sol+10-3
- src/unaudited/examples/ECDSAStakeRegistryPermissioned.sol+14-10
- test/events/IServiceManagerBaseEvents.sol+23-20
- test/integration/CoreRegistration.t.sol+6-6
- test/integration/IntegrationDeployer.t.sol+83-100
- test/integration/User.t.sol+4-2
- test/integration/mocks/BeaconChainOracleMock.t.sol-20
- test/integration/utils/Sort.t.sol+16-15
- test/mocks/DelegationMock.sol+1-3
- test/mocks/ECDSAServiceManagerMock.sol+22
- test/mocks/ECDSAStakeRegistryMock.sol+14
- test/mocks/PaymentCoordinatorMock.sol-125
- test/mocks/RewardsCoordinatorMock.sol+80
- test/mocks/ServiceManagerMock.sol+9-4
- test/unit/BLSApkRegistryUnit.t.sol+368-146
- test/unit/ECDSAServiceManager.t.sol+186
- test/unit/ECDSAStakeRegistryEqualWeightUnit.t.sol+60-14
- test/unit/ECDSAStakeRegistryPermissionedUnit.t.sol+48-16
- test/unit/ECDSAStakeRegistryUnit.t.sol+472-105
- test/unit/EjectionManagerUnit.t.sol+23-42
- test/unit/OperatorStateRetrieverUnit.t.sol+266-110
- test/unit/RegistryCoordinatorUnit.t.sol+56
- test/unit/ServiceManagerBase.t.sol+283-257
- test/unit/ServiceManagerRouter.t.sol+1-1
- test/unit/StakeRegistryUnit.t.sol+820-411
- test/utils/MockAVSDeployer.sol+123-99
Lines changed: 6 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
17 | 17 |
| |
18 | 18 |
| |
19 | 19 |
| |
20 |
| - | |
| 20 | + | |
21 | 21 |
| |
22 | 22 |
| |
23 | 23 |
| |
| |||
86 | 86 |
| |
87 | 87 |
| |
88 | 88 |
| |
| 89 | + | |
| 90 | + | |
89 | 91 |
| |
90 | 92 |
| |
91 | 93 |
| |
| |||
97 | 99 |
| |
98 | 100 |
| |
99 | 101 |
| |
| 102 | + | |
100 | 103 |
| |
101 | 104 |
| |
102 | 105 |
| |
| |||
138 | 141 |
| |
139 | 142 |
| |
140 | 143 |
| |
| 144 | + | |
141 | 145 |
| |
142 | 146 |
| |
143 | 147 |
| |
| |||
265 | 269 |
| |
266 | 270 |
| |
267 | 271 |
| |
268 |
| - | |
| 272 | + | |
269 | 273 |
| |
270 | 274 |
| |
271 | 275 |
| |
|
Lines changed: 2 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
25 | 25 |
| |
26 | 26 |
| |
27 | 27 |
| |
| 28 | + | |
28 | 29 |
| |
29 | 30 |
| |
30 | 31 |
| |
31 |
| - | |
32 |
| - | |
33 |
| - | |
34 |
| - | |
35 |
| - | |
36 |
| - | |
37 |
| - | |
38 |
| - | |
| 32 | + | |
39 | 33 |
| |
40 | 34 |
| |
41 | 35 |
| |
|
0 commit comments