Skip to content

Commit

Permalink
feat: inclusion program
Browse files Browse the repository at this point in the history
  • Loading branch information
tchataigner committed Jul 22, 2024
1 parent 1a90fcc commit 0dc1ee6
Show file tree
Hide file tree
Showing 53 changed files with 2,834 additions and 138 deletions.
14 changes: 14 additions & 0 deletions ethereum/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 ethereum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ repository = "https://github.com/lurk-lab/zk-light-clients"
anyhow = "1.0.86"
clap = "4.5.8"
env_logger = "0.11.3"
ethereum_ssz = "0.5.4"
ethereum_ssz_derive = "0.5.4"
ethereum-types = "0.14.1"
ethers-core = "2.0.14"
glob = "0.3.1"
Expand Down
2 changes: 2 additions & 0 deletions ethereum/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ thiserror = { workspace = true }
tiny-keccak = { workspace = true, features = ["keccak"] }

[dev-dependencies]
ethereum_ssz_derive = { workspace = true }
ethereum_ssz = { workspace = true }
ethereum-types = { workspace = true }
ssz_types = { workspace = true, features = ["arbitrary"] }
tree_hash = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion ethereum/core/src/crypto/sig.rs
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ mod test {
fn test_ssz_serde_sync_aggregate() {
let test_asset_path = current_dir()
.unwrap()
.join("../test-assets/SyncAggregateDeneb.ssz");
.join("../test-assets/committee-change/SyncAggregateDeneb.ssz");

let test_bytes = fs::read(test_asset_path).unwrap();

Expand Down
Loading

0 comments on commit 0dc1ee6

Please sign in to comment.