Skip to content

Commit

Permalink
revert to eigenlayer-middleware testnet-holesky branch b/c dev has pa…
Browse files Browse the repository at this point in the history
…yments stuff
  • Loading branch information
samlaf committed Apr 25, 2024
1 parent 415afb4 commit 574434b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/lib/eigenlayer-middleware
Submodule eigenlayer-middleware updated 91 files
+3 −0 .gitmodules
+3 −45 README.md
+ audits/Dedaub - Middleware Audit - Final - Feb'24.pdf
+0 −6 foundry.toml
+1 −0 lib/ds-test
+1 −1 lib/eigenlayer-contracts
+1 −1 lib/forge-std
+765 −0 script/AVSContractsDeploy.s.sol
+47 −0 script/DeploySharedContracts.s.sol
+2 −2 script/ServiceManagerRouterDeploy.s.sol
+28 −0 script/configs/AVSContractsDeploy.json
+1 −1 src/BLSApkRegistry.sol
+1 −1 src/BLSApkRegistryStorage.sol
+1 −1 src/BLSSignatureChecker.sol
+0 −182 src/EjectionManager.sol
+1 −1 src/IndexRegistry.sol
+1 −1 src/IndexRegistryStorage.sol
+1 −1 src/OperatorStateRetriever.sol
+1 −1 src/RegistryCoordinator.sol
+2 −2 src/RegistryCoordinatorStorage.sol
+4 −33 src/ServiceManagerBase.sol
+5 −5 src/ServiceManagerRouter.sol
+1 −1 src/StakeRegistry.sol
+1 −1 src/StakeRegistryStorage.sol
+1 −1 src/interfaces/IBLSApkRegistry.sol
+1 −1 src/interfaces/IBLSSignatureChecker.sol
+0 −90 src/interfaces/IECDSAStakeRegistryEventsAndErrors.sol
+0 −55 src/interfaces/IEjectionManager.sol
+2 −2 src/interfaces/IIndexRegistry.sol
+1 −1 src/interfaces/IRegistryCoordinator.sol
+42 −15 src/interfaces/IServiceManager.sol
+0 −62 src/interfaces/IServiceManagerUI.sol
+1 −1 src/interfaces/ISocketUpdater.sol
+2 −2 src/interfaces/IStakeRegistry.sol
+1 −1 src/libraries/BN254.sol
+3 −3 src/libraries/BitmapUtils.sol
+0 −496 src/unaudited/ECDSAStakeRegistry.sol
+0 −51 src/unaudited/ECDSAStakeRegistryStorage.sol
+0 −5 src/unaudited/README.md
+0 −42 src/unaudited/examples/ECDSAStakeRegistryEqualWeight.sol
+0 −100 src/unaudited/examples/ECDSAStakeRegistryPermissioned.sol
+1 −1 test/events/IBLSApkRegistryEvents.sol
+1 −1 test/events/IIndexRegistryEvents.sol
+0 −66 test/events/IServiceManagerBaseEvents.sol
+2 −2 test/events/IStakeRegistryEvents.sol
+2 −2 test/ffi/BLSPubKeyCompendiumFFI.t.sol
+1 −1 test/ffi/BLSSignatureCheckerFFI.t.sol
+2 −2 test/ffi/UpdateOperators.t.sol
+1 −1 test/ffi/util/G2Operations.sol
+1 −1 test/harnesses/BLSApkRegistryHarness.sol
+1 −1 test/harnesses/BitmapUtilsWrapper.sol
+1 −1 test/harnesses/RegistryCoordinatorHarness.t.sol
+1 −1 test/harnesses/StakeRegistryHarness.sol
+1 −6 test/integration/CoreRegistration.t.sol
+2 −2 test/integration/IntegrationBase.t.sol
+2 −2 test/integration/IntegrationChecks.t.sol
+2 −2 test/integration/IntegrationConfig.t.sol
+3 −48 test/integration/IntegrationDeployer.t.sol
+3 −3 test/integration/TimeMachine.t.sol
+3 −3 test/integration/User.t.sol
+2 −2 test/integration/mocks/BeaconChainOracleMock.t.sol
+2 −2 test/integration/tests/Full_Register_Deregister.t.sol
+2 −2 test/integration/tests/NonFull_Register_CoreBalanceChange_Update.t.sol
+2 −2 test/integration/tests/NonFull_Register_Deregister.t.sol
+2 −2 test/integration/utils/BitmapStrings.t.sol
+2 −2 test/integration/utils/Sort.t.sol
+1 −1 test/mocks/AVSDirectoryMock.sol
+2 −4 test/mocks/DelegationMock.sol
+0 −125 test/mocks/PaymentCoordinatorMock.sol
+1 −1 test/mocks/RegistryCoordinatorMock.sol
+2 −3 test/mocks/ServiceManagerMock.sol
+1 −1 test/mocks/StakeRegistryMock.sol
+1 −1 test/unit/BLSApkRegistryUnit.t.sol
+1 −1 test/unit/BLSSignatureCheckerUnit.t.sol
+2 −2 test/unit/BitmapUtils.t.sol
+0 −60 test/unit/ECDSAStakeRegistryEqualWeightUnit.t.sol
+0 −102 test/unit/ECDSAStakeRegistryPermissionedUnit.t.sol
+0 −630 test/unit/ECDSAStakeRegistryUnit.t.sol
+0 −418 test/unit/EjectionManagerUnit.t.sol
+2 −2 test/unit/OperatorStateRetrieverUnit.t.sol
+1 −1 test/unit/RegistryCoordinatorUnit.t.sol
+0 −501 test/unit/ServiceManagerBase.t.sol
+2 −3 test/unit/ServiceManagerRouter.t.sol
+1 −1 test/unit/StakeRegistryUnit.t.sol
+1 −1 test/unit/Utils.sol
+1 −1 test/utils/BLSMockAVSDeployer.sol
+3 −10 test/utils/MockAVSDeployer.sol
+1 −1 test/utils/Operators.sol
+1 −1 test/utils/Owners.sol
+1 −1 test/utils/ProofParsing.sol
+1 −1 test/utils/SignatureCompaction.sol

0 comments on commit 574434b

Please sign in to comment.