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

Build: Update m2-mainnet submodules #69

Closed
wants to merge 2 commits into from
Closed
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
1 change: 1 addition & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
[submodule "lib/eigenlayer-contracts"]
path = lib/eigenlayer-contracts
url = https://github.com/Layr-labs/eigenlayer-contracts
branch = m2-mainnet
[submodule "lib/ds-test"]
path = lib/ds-test
url = https://github.com/dapphub/ds-test
Expand Down
2 changes: 1 addition & 1 deletion lib/eigenlayer-contracts
Submodule eigenlayer-contracts updated 59 files
+1 −1 .github/workflows/certora-prover.yml
+23 −0 .github/workflows/commitlint.yml
+1 −0 .github/workflows/testinparallel.yml
+4 −0 .husky/commit-msg
+36 −0 CONTRIBUTING.md
+0 −287 CVL2.py
+17 −24 README.md
+1 −0 commitlint.config.js
+25 −25 docs/core/DelegationManager.md
+10 −10 docs/core/EigenPodManager.md
+1 −1 docs/core/StrategyManager.md
+2,995 −51 package-lock.json
+3 −0 package.json
+0 −12 script/M2_deploy.config.json
+0 −129 script/milestone/M2Deploy.sol
+5 −5 script/output/M2_deployment_data_goerli.json
+0 −14 script/utils/Allocator.sol
+3 −3 src/contracts/core/DelegationManager.sol
+8 −0 src/contracts/interfaces/IDelegationManager.sol
+8 −3 src/contracts/interfaces/IEigenPod.sol
+2 −67 src/contracts/libraries/BeaconChainProofs.sol
+28 −20 src/contracts/pods/EigenPod.sol
+1,033 −0 src/test/Delegation.t.sol
+102 −70 src/test/EigenPod.t.sol
+54 −0 src/test/events/IDelegationManagerEvents.sol
+42 −0 src/test/events/IEigenPodEvents.sol
+40 −4 src/test/harnesses/EigenPodHarness.sol
+4 −0 src/test/harnesses/EigenPodManagerWrapper.sol
+527 −0 src/test/integration/IntegrationBase.t.sol
+524 −0 src/test/integration/IntegrationDeployer.t.sol
+96 −0 src/test/integration/README.md
+45 −0 src/test/integration/TimeMachine.t.sol
+320 −0 src/test/integration/User.t.sol
+698 −0 src/test/integration/mocks/BeaconChainMock.t.sol
+17 −0 src/test/integration/mocks/BeaconChainOracleMock.t.sol
+492 −0 src/test/integration/tests/Deposit_Delegate_Queue_Complete.t.sol
+0 −1 src/test/mocks/DelayedWithdrawalRouterMock.sol
+4 −0 src/test/mocks/DelegationManagerMock.sol
+9 −1 src/test/mocks/EigenPodManagerMock.sol
+4 −1 src/test/mocks/EigenPodMock.sol
+1 −0 src/test/test-data/balanceUpdateProof_balance28ETH_302913.json
+0 −47 src/test/test-data/balanceUpdateProof_notOverCommitted_302913.json
+1 −116 src/test/test-data/balanceUpdateProof_notOverCommitted_302913_incrementedBlockBy100.json
+4 −51 src/test/test-data/balanceUpdateProof_updated_to_0ETH_302913.json
+1 −0 src/test/test-data/balanceUpdateProof_updated_to_30ETH_302913.json
+1 −1 src/test/test-data/fullWithdrawalProof_Latest.json
+1 −0 src/test/test-data/fullWithdrawalProof_Latest_28ETH.json
+1 −1 src/test/test-data/partialWithdrawalProof_Latest.json
+1 −0 src/test/test-data/withdrawal_credential_proof_302913_30ETHBalance.json
+196 −0 src/test/tree/DelegationManagerUnit.tree
+0 −93 src/test/tree/EigenPodManager.tree
+171 −0 src/test/tree/EigenPodUnit.tree
+0 −0 src/test/tree/StrategyManagerUnit.tree
+1,994 −2,069 src/test/unit/DelegationUnit.t.sol
+642 −44 src/test/unit/EigenPod-PodManagerUnit.t.sol
+7 −12 src/test/unit/EigenPodManagerUnit.t.sol
+889 −398 src/test/unit/EigenPodUnit.t.sol
+2 −2 src/test/unit/StrategyManagerUnit.t.sol
+7 −30 src/test/utils/ProofParsing.sol
2 changes: 1 addition & 1 deletion lib/openzeppelin-contracts
2 changes: 1 addition & 1 deletion lib/openzeppelin-contracts-upgradeable
Loading