Skip to content

Commit

Permalink
undo eigenlayer-middleware submodule change
Browse files Browse the repository at this point in the history
  • Loading branch information
afkbyte committed Sep 23, 2024
1 parent 6cc8d45 commit eabb308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/lib/eigenlayer-middleware
Submodule eigenlayer-middleware updated 62 files
+0 −3 .gitmodules
+29 −3 LICENSE
+24 −10 README.md
+ audits/M2 Mainnet - Dedaub - Feb 2024.pdf
+2 −2 docs/README.md
+1 −1 docs/ServiceManagerBase.md
+1 −1 docs/experimental/AVS-Guide.md
+1 −0 foundry.toml
+0 −1 lib/ds-test
+1 −1 lib/eigenlayer-contracts
+1 −1 lib/forge-std
+8 −4 src/BLSApkRegistry.sol
+116 −62 src/BLSSignatureChecker.sol
+175 −0 src/EjectionManager.sol
+5 −1 src/IndexRegistry.sol
+33 −0 src/OperatorStateRetriever.sol
+274 −145 src/RegistryCoordinator.sol
+6 −1 src/RegistryCoordinatorStorage.sol
+252 −28 src/ServiceManagerBase.sol
+55 −0 src/ServiceManagerBaseStorage.sol
+3 −3 src/ServiceManagerRouter.sol
+22 −10 src/StakeRegistry.sol
+24 −3 src/interfaces/IECDSAStakeRegistryEventsAndErrors.sol
+55 −0 src/interfaces/IEjectionManager.sol
+16 −40 src/interfaces/IServiceManager.sol
+61 −0 src/interfaces/IServiceManagerUI.sol
+61 −0 src/libraries/LibMergeSort.sol
+27 −0 src/libraries/SignatureCheckerLib.sol
+283 −0 src/unaudited/ECDSAServiceManagerBase.sol
+204 −75 src/unaudited/ECDSAStakeRegistry.sol
+10 −3 src/unaudited/ECDSAStakeRegistryStorage.sol
+14 −10 src/unaudited/examples/ECDSAStakeRegistryPermissioned.sol
+69 −0 test/events/IServiceManagerBaseEvents.sol
+1 −1 test/ffi/BLSPubKeyCompendiumFFI.t.sol
+68 −0 test/harnesses/AVSDirectoryHarness.sol
+6 −1 test/integration/CoreRegistration.t.sol
+134 −78 test/integration/IntegrationDeployer.t.sol
+1 −1 test/integration/TimeMachine.t.sol
+4 −2 test/integration/User.t.sol
+4 −3 test/integration/mocks/BeaconChainOracleMock.t.sol
+144 −2 test/mocks/AVSDirectoryMock.sol
+3 −3 test/mocks/DelegationMock.sol
+29 −0 test/mocks/ECDSAServiceManagerMock.sol
+14 −0 test/mocks/ECDSAStakeRegistryMock.sol
+114 −0 test/mocks/RewardsCoordinatorMock.sol
+9 −3 test/mocks/ServiceManagerMock.sol
+368 −146 test/unit/BLSApkRegistryUnit.t.sol
+1 −1 test/unit/BitmapUtils.t.sol
+186 −0 test/unit/ECDSAServiceManager.t.sol
+60 −14 test/unit/ECDSAStakeRegistryEqualWeightUnit.t.sol
+48 −16 test/unit/ECDSAStakeRegistryPermissionedUnit.t.sol
+472 −105 test/unit/ECDSAStakeRegistryUnit.t.sol
+399 −0 test/unit/EjectionManagerUnit.t.sol
+188 −0 test/unit/LibMergeSort.t.sol
+266 −110 test/unit/OperatorStateRetrieverUnit.t.sol
+200 −0 test/unit/RegistryCoordinatorMigration.t.sol
+56 −0 test/unit/RegistryCoordinatorUnit.t.sol
+533 −0 test/unit/ServiceManagerBase.t.sol
+347 −0 test/unit/ServiceManagerMigration.t.sol
+1 −0 test/unit/ServiceManagerRouter.t.sol
+820 −411 test/unit/StakeRegistryUnit.t.sol
+124 −92 test/utils/MockAVSDeployer.sol

0 comments on commit eabb308

Please sign in to comment.