Skip to content

Commit 02c68ef

Browse files
authored
bump middleware to track 1.3 release (#395)
Fixes # ### What Changed? <!-- Describe the changes made in this pull request --> ### Reviewer Checklist - [ ] New features are tested and documented - [ ] PR updates the changelog with a description of changes - [ ] PR has one of the `changelog-X` labels (if applies) - [ ] Code deprecates any old functionality before removing it
1 parent 7fb4525 commit 02c68ef

File tree

14 files changed

+4112
-1542
lines changed

14 files changed

+4112
-1542
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ Those changes in added, changed or breaking changes, should include usage exampl
4949
.unwrap();
5050
```
5151

52+
* Bump middleware to [v1.3.0-rc.0](https://github.com/Layr-Labs/eigenlayer-middleware/releases/tag/v1.3.0-rc.0) [#395](https://github.com/Layr-Labs/eigensdk-rs/pull/395).
53+
5254
### Breaking Changes 🛠
5355

5456
* Updated slashing bindings to [the v1.1.1 eigenlayer-middleware release](https://github.com/Layr-Labs/eigenlayer-middleware/releases/tag/v1.1.1-testnet-slashing) [#365](https://github.com/Layr-Labs/eigensdk-rs/pull/365)

crates/chainio/clients/avsregistry/src/writer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1731,7 +1731,7 @@ mod tests {
17311731
strategy: get_erc20_mock_strategy(http_endpoint.clone()).await,
17321732
multiplier: U96::from(1),
17331733
};
1734-
let look_ahead_period = 10;
1734+
let look_ahead_period = 0;
17351735

17361736
let tx_hash = avs_writer
17371737
.create_slashable_stake_quorum(

crates/m2_contracts/anvil/m2_contracts_deployed_anvil_state/state.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

crates/operator_sets_contracts/anvil/operatorset_contracts_deployed_anvil_state/state.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

crates/operator_sets_contracts/script/utils/MockAvsDeploymentLib.sol

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ library MockAvsDeploymentLib {
4646
using Strings for *;
4747
using UpgradeableProxyLib for address;
4848

49+
string internal constant MIDDLEWARE_VERSION = "v1.3.0-rc.0";
4950
Vm internal constant VM = Vm(address(uint160(uint256(keccak256("hevm cheat code")))));
5051

5152
struct DeploymentData {
@@ -113,7 +114,8 @@ library MockAvsDeploymentLib {
113114
IIndexRegistry(result.indexRegistry),
114115
ISocketRegistry(result.socketRegistry),
115116
IAllocationManager(core.allocationManager),
116-
IPauserRegistry(core.pauserRegistry)
117+
IPauserRegistry(core.pauserRegistry),
118+
MIDDLEWARE_VERSION
117119
)
118120
);
119121

crates/utils/src/slashing/middleware/blsapkregistry.rs

Lines changed: 293 additions & 5 deletions
Large diffs are not rendered by default.

crates/utils/src/slashing/middleware/indexregistry.rs

Lines changed: 4 additions & 4 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)