Skip to content

Commit

Permalink
update middleware rev to slashing-release-branch latest commit
Browse files Browse the repository at this point in the history
  • Loading branch information
supernovahs committed Dec 11, 2024
1 parent de54223 commit 839be64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/lib/eigenlayer-middleware
Submodule eigenlayer-middleware updated 72 files
+6 −4 foundry.toml
+1 −1 lib/eigenlayer-contracts
+40 −0 script/utils/UpgradeLib.sol
+23 −0 script/utils/testdata/17000/core_testdata.json
+18 −0 script/utils/testdata/17000/middlware_testdata.json
+21 −0 src/AVSRegistrar.sol
+5 −3 src/BLSSignatureChecker.sol
+440 −239 src/RegistryCoordinator.sol
+12 −4 src/RegistryCoordinatorStorage.sol
+276 −17 src/ServiceManagerBase.sol
+19 −3 src/ServiceManagerBaseStorage.sol
+133 −33 src/StakeRegistry.sol
+20 −5 src/StakeRegistryStorage.sol
+9 −6 src/interfaces/IRegistryCoordinator.sol
+37 −0 src/interfaces/IServiceManager.sol
+3 −0 src/interfaces/IServiceManagerUI.sol
+44 −0 src/interfaces/ISlasher.sol
+32 −9 src/interfaces/IStakeRegistry.sol
+2 −2 src/libraries/BN254.sol
+61 −0 src/libraries/LibMergeSort.sol
+145 −0 src/libraries/QuorumBitmapHistoryLib.sol
+30 −0 src/libraries/SignatureCheckerLib.sol
+22 −0 src/slashers/InstantSlasher.sol
+77 −0 src/slashers/VetoableSlasher.sol
+37 −0 src/slashers/base/SlasherBase.sol
+11 −0 src/slashers/base/SlasherStorage.sol
+24 −4 src/unaudited/ECDSAServiceManagerBase.sol
+1 −1 src/unaudited/ECDSAStakeRegistry.sol
+12 −0 test/harnesses/AVSDirectoryHarness.sol
+6 −4 test/harnesses/RegistryCoordinatorHarness.t.sol
+4 −2 test/harnesses/StakeRegistryHarness.sol
+28 −17 test/integration/CoreRegistration.t.sol
+5 −5 test/integration/IntegrationBase.t.sol
+1 −1 test/integration/IntegrationChecks.t.sol
+17 −17 test/integration/IntegrationConfig.t.sol
+101 −65 test/integration/IntegrationDeployer.t.sol
+17 −22 test/integration/User.t.sol
+22 −0 test/integration/mocks/BeaconChainOracleMock.t.sol
+2 −2 test/integration/tests/NonFull_Register_CoreBalanceChange_Update.t.sol
+169 −47 test/mocks/AVSDirectoryMock.sol
+17 −0 test/mocks/AVSRegistrarMock.sol
+175 −0 test/mocks/AllocationManagerMock.sol
+249 −180 test/mocks/DelegationMock.sol
+24 −2 test/mocks/ECDSAServiceManagerMock.sol
+97 −0 test/mocks/EigenPodManagerMock.sol
+91 −0 test/mocks/PermissionControllerMock.sol
+3 −1 test/mocks/RegistryCoordinatorMock.sol
+160 −68 test/mocks/RewardsCoordinatorMock.sol
+12 −4 test/mocks/ServiceManagerMock.sol
+20 −7 test/mocks/StakeRegistryMock.sol
+100 −0 test/unit/AVSRegistrar.t.sol
+8 −2 test/unit/ECDSAServiceManager.t.sol
+188 −0 test/unit/LibMergeSort.t.sol
+6 −6 test/unit/OperatorStateRetrieverUnit.t.sol
+665 −127 test/unit/RegistryCoordinatorUnit.t.sol
+29 −20 test/unit/ServiceManagerBase.t.sol
+2 −1 test/unit/ServiceManagerRouter.t.sol
+66 −13 test/unit/StakeRegistryUnit.t.sol
+46 −0 test/unit/UpgradeableProxyLib.sol
+2 −2 test/unit/Utils.sol
+2 −2 test/utils/BLSMockAVSDeployer.sol
+271 −0 test/utils/CoreDeployLib.sol
+0 −11 test/utils/Greeter.sol
+0 −65 test/utils/GreeterProxiable.sol
+0 −14 test/utils/GreeterV2.sol
+0 −17 test/utils/GreeterV2Proxiable.sol
+92 −60 test/utils/MockAVSDeployer.sol
+0 −13 test/utils/NoInitializer.sol
+0 −9 test/utils/ProxyTestContracts.sol
+0 −241 test/utils/UpgradeableProxyUtils.sol
+0 −87 test/utils/UpgradeableProxyUtils.t.sol
+0 −19 test/utils/WithConstructor.sol

0 comments on commit 839be64

Please sign in to comment.