Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update to latest dev contracts #397

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/bindings/DelegationManager/binding.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contracts/bindings/EigenPod/binding.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contracts/bindings/EigenPodManager/binding.go

Large diffs are not rendered by default.

1,154 changes: 35 additions & 1,119 deletions contracts/bindings/IAVSDirectory/binding.go

Large diffs are not rendered by default.

926 changes: 682 additions & 244 deletions contracts/bindings/IRewardsCoordinator/binding.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contracts/bindings/StrategyManager/binding.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contracts/lib/eigenlayer-middleware
Submodule eigenlayer-middleware updated 38 files
+1 −1 lib/eigenlayer-contracts
+13 −6 src/EjectionManager.sol
+174 −255 src/RegistryCoordinator.sol
+6 −1 src/RegistryCoordinatorStorage.sol
+112 −180 src/ServiceManagerBase.sol
+0 −2 src/ServiceManagerBaseStorage.sol
+52 −0 src/SocketRegistry.sol
+1 −1 src/interfaces/IEjectionManager.sol
+8 −0 src/interfaces/IRegistryCoordinator.sol
+30 −3 src/interfaces/IServiceManager.sol
+10 −0 src/interfaces/ISocketRegistry.sol
+0 −20 src/interfaces/ISocketUpdater.sol
+0 −61 src/libraries/LibMergeSort.sol
+0 −27 src/libraries/SignatureCheckerLib.sol
+73 −0 src/unaudited/ECDSAServiceManagerBase.sol
+70 −11 test/events/IServiceManagerBaseEvents.sol
+0 −68 test/harnesses/AVSDirectoryHarness.sol
+3 −2 test/harnesses/RegistryCoordinatorHarness.t.sol
+2 −1 test/integration/CoreRegistration.t.sol
+19 −31 test/integration/IntegrationDeployer.t.sol
+1 −1 test/integration/User.t.sol
+0 −21 test/integration/mocks/BeaconChainOracleMock.t.sol
+16 −15 test/integration/utils/Sort.t.sol
+9 −169 test/mocks/AVSDirectoryMock.sol
+27 −21 test/mocks/DelegationMock.sol
+1 −8 test/mocks/ECDSAServiceManagerMock.sol
+2 −0 test/mocks/RegistryCoordinatorMock.sol
+85 −61 test/mocks/RewardsCoordinatorMock.sol
+2 −1 test/unit/BLSSignatureCheckerUnit.t.sol
+2 −2 test/unit/EjectionManagerUnit.t.sol
+0 −188 test/unit/LibMergeSort.t.sol
+4 −4 test/unit/OperatorStateRetrieverUnit.t.sol
+0 −200 test/unit/RegistryCoordinatorMigration.t.sol
+30 −30 test/unit/RegistryCoordinatorUnit.t.sol
+646 −97 test/unit/ServiceManagerBase.t.sol
+0 −347 test/unit/ServiceManagerMigration.t.sol
+2 −1 test/unit/StakeRegistryUnit.t.sol
+19 −4 test/utils/MockAVSDeployer.sol