Skip to content
This repository was archived by the owner on Nov 19, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11,209 changes: 5,736 additions & 5,473 deletions Cargo.lock

Large diffs are not rendered by default.

30 changes: 19 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ version = "0.1.0"
edition = "2024"

[dependencies]
commonware-avs-router = { git = "https://github.com/BreadchainCoop/commonware-avs-router", branch = "22-update-commonware-to-0055-and-refactor-lookup-repository-for-authenticated-p2p" }
# commonware-avs-router = { git = "https://github.com/BreadchainCoop/commonware-avs-router", branch = "22-update-commonware-to-0055-and-refactor-lookup-repository-for-authenticated-p2p" }
commonware-avs-router = { path = "../" }

alloy = { version = "0.12.6" }
alloy-network = "0.5.4"
alloy-primitives = "0.8.25"
alloy-signer = "0.12.6"
alloy-signer-local = "0.12.6"
alloy-provider = "0.12.6"
# alloy = { version = "0.12.6" }
# alloy-network = "0.5.4"
# alloy-primitives = "0.8.25"
# alloy-signer = "0.12.6"
# alloy-signer-local = "0.12.6"
# alloy-provider = "0.12.6"
anyhow = "1.0"
ark-bn254 = "0.5.0"
ark-ec = "0.5.0"
Expand All @@ -29,23 +30,30 @@ commonware-p2p = "0.0.56"
commonware-runtime = "0.0.56"
commonware-utils = "0.0.56"
dotenv = "0.15.0"
eigen-crypto-bls = "0.5.0"
eigen-crypto-bn254 = "0.5.0"
eigen-logging = "0.1.3"
# eigen-crypto-bls = "0.5.0"
# eigen-crypto-bn254 = "0.5.0"
# eigen-logging = "0.1.3"
futures = "0.3.31"
futures-util = "0.3.31"
governor = "0.6.3"
prometheus-client = "0.23.1"
prost = "0.13.5"
rand = "0.9.1"
commonware-eigenlayer = {git = "https://github.com/BreadchainCoop/commonware-avs-network-lookup"}
# commonware-eigenlayer = {git = "https://github.com/BreadchainCoop/commonware-avs-network-lookup"}
serde = { version = "1.0.219", features = ["derive"] }
serde_yaml = "0.9.34"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
url = { version = "2.5.4", features = ["serde"] }
serde_json = "1.0.140"

solana-pubkey = "3.0.0"
solana-keypair = "3.0.0"
solana-signer = "3.0.0"
jito-bls-ncn-clients = { git = "https://github.com/jito-foundation/jito-bls-ncn", branch = "ck/ncn", package = "jito-bls-ncn-clients" }
jito-bls-ncn-core = { git = "https://github.com/jito-foundation/jito-bls-ncn", branch = "ck/ncn", package = "jito-bls-ncn-core", features = ["commonware"] }
jito-bls-ncn-sdk = { git = "https://github.com/jito-foundation/jito-bls-ncn", branch = "ck/ncn", package = "jito-bls-ncn-sdk" }

[build-dependencies]
prost-build = "0.13.5"

Expand Down
10 changes: 8 additions & 2 deletions example.env
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
# =============================================================================
# TESTNET MODE (Holesky) - Default Configuration
# =============================================================================
HTTP_RPC=https://ethereum-holesky.publicnode.com # change to private rpc
WS_RPC=wss://ethereum-holesky.publicnode.com # Not a real endpoint
HTTP_RPC=https://ethereum-holesky.publicnode.com # change to private rpc
WS_RPC=wss://ethereum-holesky.publicnode.com # Not a real endpoint

# =============================================================================
# LOCAL MODE - Uncomment these lines and comment the lines above for local development
Expand All @@ -25,3 +25,9 @@ AVS_DEPLOYMENT_PATH="../eigenlayer-bls-local/.nodes/avs_deploy.json"
CONTRIBUTOR_1_KEYFILE="../eigenlayer-bls-local/.nodes/operator_keys/testacc1.private.bls.key.json"
CONTRIBUTOR_2_KEYFILE="../eigenlayer-bls-local/.nodes/operator_keys/testacc2.private.bls.key.json"
CONTRIBUTOR_3_KEYFILE="../eigenlayer-bls-local/.nodes/operator_keys/testacc3.private.bls.key.json"


# =============================================================================
# Solana Config
# =============================================================================
TEST_BLS_NCN_CONFIG_FILE_PATH=../../jito-bls-ncn/cli/test_ncn_output.json
1 change: 0 additions & 1 deletion src/bindings/abi/BLSSignatureChecker.abi

This file was deleted.

Loading