Skip to content

Commit

Permalink
bn254, bls and keystore utils
Browse files Browse the repository at this point in the history
  • Loading branch information
iStrike7 committed Jul 2, 2024
1 parent 9f31de3 commit 49a3796
Show file tree
Hide file tree
Showing 6 changed files with 460 additions and 8 deletions.
116 changes: 108 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ members = [ "crates/chainio/clients/avsregistry/",
"crates/crypto/bn254/",
"crates/utils/",
"crates/crypto/bls/",
"crates/crypto/keystore/",
"crates/metrics/collectors/economic/",
"crates/metrics/collectors/rpc_calls/",
"crates/services/avsregistry/",
Expand Down Expand Up @@ -69,6 +70,7 @@ eigen-contract-bindings = { path = "crates/contracts/bindings/"}
eigen-types = {path = "crates/types/"}
eigen-crypto-bls = {path = "crates/crypto/bls/"}
eigen-crypto-bn254 = {path = "crates/crypto/bn254/"}
eigen-crypto-keystore = {path = "crates/crypto/keystore/"}
eigen-utils = {path = "crates/utils/"}
eigen-metrics-collectors-economic = {path = "crates/metrics/collectors/economic"}
eigen-metrics-collectors-rpc-calls = {path = "crates/metrics/collectors/rpc_calls"}
Expand Down
5 changes: 5 additions & 0 deletions crates/crypto/bls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ thiserror.workspace = true
ark-ec = "0.4.2"
alloy-primitives.workspace = true
hex = "0.4.3"
eigen-utils.workspace = true
ethers = { version = "2.0", features = ["rustls", "ws"] }
eyre = "0.6.8"
num-bigint = "0.4.4"

[dev-dependencies]
rand = "0.8.4"
tokio = { workspace = true, features = ["full"] }
Loading

0 comments on commit 49a3796

Please sign in to comment.