Skip to content

Commit c91ab11

Browse files
supernovahssupernovahs
and
supernovahs
authored
chore:release 0.1.1 (#167)
Co-authored-by: supernovahs <supernovahs@proton.me>
1 parent 62556fd commit c91ab11

File tree

6 files changed

+26
-46
lines changed

6 files changed

+26
-46
lines changed

Cargo.lock

Lines changed: 25 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ members = [
55
"crates/chainio/clients/eth/",
66
"crates/chainio/clients/fireblocks/",
77
"crates/chainio/txmanager/",
8-
"crates/contracts/bindings/",
98
"crates/crypto/bls/",
109
"crates/crypto/bn254/",
1110
"crates/eigen-cli/",
@@ -30,7 +29,7 @@ members = [
3029
resolver = "2"
3130

3231
[workspace.package]
33-
version = "0.1.0"
32+
version = "0.1.1"
3433
edition = "2021"
3534
authors = ["Eigen Layer contributors"]
3635
rust-version = "1.79"
@@ -63,7 +62,6 @@ eigen-client-avsregistry = { path = "crates/chainio/clients/avsregistry" }
6362
eigen-client-elcontracts = { path = "crates/chainio/clients/elcontracts" }
6463
eigen-client-eth = { path = "crates/chainio/clients/eth" }
6564
eigen-client-fireblocks = { path = "crates/chainio/clients/fireblocks" }
66-
eigen-contract-bindings = { path = "crates/contracts/bindings/" }
6765
eigen-crypto-bls = { path = "crates/crypto/bls/" }
6866
eigen-crypto-bn254 = { path = "crates/crypto/bn254/" }
6967
eigen-logging = { path = "crates/logging/" }

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ cargo add eigensdk --features full
1414

1515
- [eigen-client-avsregistry](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/chainio/clients/avsregistry) - Read, Write and subscribe methods for AvsRegistry
1616
- [eigen-client-elcontracts](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/chainio/clients/elcontracts) - Convenience methods to call Eigenlayer contracts
17-
- [eigen-contracts-bindings](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/contracts/bindings) - Generate ethers bindings for Eigen Layer.
1817
- [eigen-crypto-bls](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/crypto/bls) - New bls key pair, sign message, conversion utilites between alloy and arkworks bn254.
1918
- [eigen-crypto-bn254](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/crypto/bn254) - verify message on G2, map to curve.
2019
- [eigen-metrics](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/metrics) - performance, rpc and economic metrics

crates/eigensdk/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ eigen-client-avsregistry = { workspace = true, optional = true }
1313
eigen-client-elcontracts = { workspace = true, optional = true }
1414
eigen-client-eth = { workspace = true, optional = true }
1515
eigen-client-fireblocks = { workspace = true, optional = true }
16-
eigen-contract-bindings = { workspace = true, optional = true }
1716
eigen-crypto-bls = { workspace = true, optional = true }
1817
eigen-crypto-bn254 = { workspace = true, optional = true }
1918
eigen-logging = { workspace = true, optional = true }
@@ -42,7 +41,6 @@ full = [
4241
"client-elcontracts",
4342
"client-eth",
4443
"client-fireblocks",
45-
"contract-bindings",
4644
"crypto-bls",
4745
"crypto-bn254",
4846
"logging",
@@ -64,8 +62,6 @@ client-elcontracts = ["dep:eigen-client-elcontracts"]
6462
client-eth = ["dep:eigen-client-eth"]
6563
client-fireblocks = ["dep:eigen-client-fireblocks"]
6664

67-
# Contract-related features
68-
contract-bindings = ["dep:eigen-contract-bindings"]
6965

7066
# Crypto-related features
7167
crypto-bls = ["dep:eigen-crypto-bls"]

crates/eigensdk/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ cargo add eigensdk --features full
1414

1515
- [eigen-client-avsregistry](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/chainio/clients/avsregistry) - Read, Write and subscribe methods for AvsRegistry
1616
- [eigen-client-elcontracts](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/chainio/clients/elcontracts) - Convenience methods to call Eigenlayer contracts
17-
- [eigen-contracts-bindings](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/contracts/bindings) - Generate ethers bindings for Eigen Layer.
1817
- [eigen-crypto-bls](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/crypto/bls) - New bls key pair, sign message, conversion utilites between alloy and arkworks bn254.
1918
- [eigen-crypto-bn254](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/crypto/bn254) - verify message on G2, map to curve.
2019
- [eigen-metrics](https://github.com/Layr-Labs/eigensdk-rs/tree/main/crates/metrics) - performance, rpc and economic metrics

crates/eigensdk/src/lib.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ pub use eigen_logging as logging;
3232
#[doc(inline)]
3333
pub use eigen_metrics as metrics;
3434

35-
#[cfg(feature = "contract-bindings")]
36-
#[doc(inline)]
37-
pub use eigen_contract_bindings as contract_bindings;
38-
3935
/* ------------------------------------- Client Re-exports ------------------------------------- */
4036

4137
#[cfg(feature = "client-avsregistry")]

0 commit comments

Comments
 (0)