Skip to content

Commit 8acf04c

Browse files
authored
feat: add common feature to eigensdk's full (#249)
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 3f65b5b commit 8acf04c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,13 @@ Each version will have a separate `Breaking Changes` section as well. To describ
1111

1212
## [Unreleased]
1313
### Added
14+
* Added `eigen_common` dependency to the `eigensdk` crate when "full" feature is enabled in [#249](https://github.com/Layr-Labs/eigensdk-rs/pull/249).
1415
* Added bindings for `ECDSAStakeRegistry` and `ECDSAServiceManagerBase` in [#269](https://github.com/Layr-Labs/eigensdk-rs/pull/269).
1516
* Added release-plz in ci in [#275](https://github.com/Layr-Labs/eigensdk-rs/pull/275).
1617
* Added custom configuration for release-plz in [#281](https://github.com/Layr-Labs/eigensdk-rs/pull/281).
1718

1819
### Changed
19-
* Changes in the way bindings are generated in [#245](https://github.com/Layr-Labs/eigensdk-rs/pull/243).
20+
* Changes in the way bindings are generated in [#243](https://github.com/Layr-Labs/eigensdk-rs/pull/243).
2021
* The `bindings` target now generates the bindings using Docker with Foundry v0.3.0.
2122
* The previous `bindings` target was renamed to `bindings_host`, as it runs without Docker. However the `bindings_host` target is for CI use only. To generate the bindings, please use the `bindings` target.
2223
* Fixed the rewardsv2 bindings version in readme to 0.5.4 in [#246](https://github.com/Layr-Labs/eigensdk-rs/pull/246).

crates/eigensdk/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ eigen-testing-utils = { workspace = true, optional = true }
2626
eigen-types = { workspace = true, optional = true }
2727
eigen-utils = { workspace = true, optional = true }
2828
eigen-nodeapi = { workspace = true, optional = true }
29-
eigen-common = {workspace = true, optional = true}
29+
eigen-common = { workspace = true, optional = true }
3030

3131

3232
# Feature configurations
@@ -40,6 +40,7 @@ full = [
4040
"client-elcontracts",
4141
"client-eth",
4242
"client-fireblocks",
43+
"common",
4344
"crypto-bls",
4445
"crypto-bn254",
4546
"logging",

0 commit comments

Comments
 (0)