Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
shrimalmadhur committed Oct 17, 2024
1 parent 3259716 commit 31ceb07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/eigenlayer-contracts
Submodule eigenlayer-contracts updated 75 files
+1 −0 .gitattributes
+1 −1 .github/workflows/coverage.yml
+0 −24 .github/workflows/slither.yml
+7 −3 .github/workflows/storage-report.yml
+4 −4 README.md
+ audits/Token + Programmatic Incentives - Sigma Prime - Sep 2024.pdf
+3 −1 docs/core/StrategyManager.md
+12 −12 docs/release/slashing/AllocationManager.md
+47 −0 script/configs/devnet/deploy_from_scratch.holesky.slashing.config.json
+4 −4 script/configs/holesky/eigenlayer_addresses_preprod.config.json
+2 −2 script/configs/holesky/eigenlayer_addresses_testnet.config.json
+1 −1 script/configs/local/deploy_from_scratch.anvil.config.json
+4 −4 script/configs/mainnet/mainnet-addresses.config.json
+641 −0 script/deploy/devnet/deploy_from_scratch.s.sol
+1 −1 script/deploy/holesky/Deploy_Preprod_RewardsCoordinator.s.sol
+1 −1 script/deploy/holesky/Deploy_Test_RewardsCoordinator.s.sol
+2 −2 script/deploy/holesky/M2_Deploy_From_Scratch.s.sol
+1 −1 script/deploy/holesky/M2_Deploy_Preprod.s.sol
+112 −0 script/deploy/holesky/Preprod_Upgrade_bEIGEN_and_EIGEN.s.sol
+112 −0 script/deploy/holesky/bEIGEN_and_EIGEN_upgrade.s.sol
+44 −0 script/deploy/holesky/upgrade_preprod_rewardsCoordinator.s.sol
+1 −1 script/deploy/holesky/v0.4.3-upgrade_testnet_rewardsCoordinator.s.sol
+4 −4 script/deploy/local/Deploy_From_Scratch.s.sol
+1 −1 script/deploy/mainnet/Deploy_Strategy_Factory.s.sol
+72 −0 script/deploy/mainnet/EIGEN_timelock_reduction.s.sol
+127 −0 script/deploy/mainnet/EIGEN_upgrade.s.sol
+72 −0 script/deploy/mainnet/bEIGEN_timelock_reduction.s.sol
+104 −0 script/deploy/mainnet/bEIGEN_upgrade.s.sol
+1 −1 script/deploy/mainnet/v0.3.0-mainnet-rewards.s.sol
+2 −2 script/deploy/mainnet/v0.4.2-mainnet-pepe.s.sol
+197 −0 script/deploy/mainnet/v0.4.3-upgrade_rewardsCoordinator.s.sol
+52 −0 script/output/devnet/SLASHING_deploy_from_scratch_deployment_data.json
+8 −3 script/utils/ExistingDeploymentParser.sol
+1 −1 src/contracts/core/AVSDirectoryStorage.sol
+29 −30 src/contracts/core/AllocationManager.sol
+3 −3 src/contracts/core/AllocationManagerStorage.sol
+2 −2 src/contracts/core/DelegationManager.sol
+6 −3 src/contracts/core/DelegationManagerStorage.sol
+2 −0 src/contracts/core/RewardsCoordinator.sol
+1 −1 src/contracts/core/RewardsCoordinatorStorage.sol
+5 −5 src/contracts/interfaces/IAllocationManager.sol
+31 −0 src/contracts/interfaces/IBackingEigen.sol
+43 −0 src/contracts/interfaces/IDelegationFaucet.sol
+202 −0 src/contracts/interfaces/ISlasher.sol
+0 −1 src/contracts/interfaces/IStrategyManager.sol
+0 −3 src/contracts/strategies/StrategyBase.sol
+31 −1 src/contracts/token/BackingEigen.sol
+12 −3 src/contracts/token/Eigen.sol
+9 −9 src/test/Delegation.t.sol
+277 −0 src/test/DevnetLifecycle.t.sol
+1 −1 src/test/EigenLayerTestHelper.t.sol
+66 −64 src/test/Withdrawals.t.sol
+27 −5 src/test/integration/IntegrationDeployer.t.sol
+67 −65 src/test/integration/tests/Delegate_Deposit_Queue_Complete.t.sol
+273 −268 src/test/integration/tests/Deposit_Delegate_Queue_Complete.t.sol
+490 −484 src/test/integration/tests/Deposit_Delegate_Redelegate_Complete.t.sol
+229 −225 src/test/integration/tests/Deposit_Delegate_Undelegate_Complete.t.sol
+50 −49 src/test/integration/tests/Deposit_Delegate_UpdateBalance.t.sol
+72 −70 src/test/integration/tests/Deposit_Queue_Complete.t.sol
+61 −59 src/test/integration/tests/Deposit_Register_QueueWithdrawal_Complete.t.sol
+4 −4 src/test/integration/tests/Upgrade_Setup.t.sol
+96 −92 src/test/integration/tests/eigenpod/VerifyWC_StartCP_CompleteCP.t.sol
+3 −1 src/test/integration/users/User.t.sol
+17 −0 src/test/mocks/DelegationManagerMock.sol
+9 −1 src/test/token/EigenTransferRestrictions.t.sol
+20 −12 src/test/token/EigenWrapping.t.sol
+56 −6 src/test/token/bEIGEN.t.sol
+1 −1 src/test/unit/AVSDirectoryUnit.t.sol
+687 −58 src/test/unit/AllocationManagerUnit.t.sol
+3 −3 src/test/unit/DelegationUnit.t.sol
+94 −83 src/test/unit/EigenPodManagerUnit.t.sol
+1 −1 src/test/unit/EigenPodUnit.t.sol
+1 −1 src/test/unit/RewardsCoordinatorUnit.t.sol
+1 −1 src/test/unit/StrategyBaseUnit.t.sol
+1 −1 src/test/unit/StrategyManagerUnit.t.sol

0 comments on commit 31ceb07

Please sign in to comment.