Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Client implementation #1

Merged
merged 29 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
d49c23e
Initial commit
gianbelinche Nov 29, 2024
0b367c5
Fix compilation
gianbelinche Nov 29, 2024
7f3959e
Fix tests
gianbelinche Nov 29, 2024
3943dba
Fix client tests
gianbelinche Nov 29, 2024
25ada9c
Add thiserror
gianbelinche Nov 29, 2024
a44decf
Fix warnings
gianbelinche Nov 29, 2024
6a439ae
Fix remaining warnings
gianbelinche Nov 29, 2024
3ac1f62
Fix comments
gianbelinche Dec 2, 2024
c925859
Fix PR comments
gianbelinche Dec 2, 2024
850b125
Sync blob info
gianbelinche Dec 12, 2024
47b956e
Sync verifier
gianbelinche Dec 12, 2024
261b6f8
Sync config
gianbelinche Dec 12, 2024
a5c1340
Sync rest of files
gianbelinche Dec 12, 2024
847e533
Fix tests
gianbelinche Dec 12, 2024
f8d1bab
Remove rlp
gianbelinche Dec 12, 2024
30fe3f1
Add docs
gianbelinche Dec 13, 2024
44df161
Add documentation
gianbelinche Dec 16, 2024
beb238d
Add pub crate
gianbelinche Dec 16, 2024
cabdb56
Update with new changes
gianbelinche Dec 19, 2024
402ec48
Fix comments
gianbelinche Dec 23, 2024
4974c95
Merge branch 'client-implementation' into thiserror
gianbelinche Dec 23, 2024
9c2c39d
Merge branch 'thiserror' into sync-latest-changes
gianbelinche Jan 3, 2025
b1e7baa
Fix merge
gianbelinche Jan 3, 2025
5ac66b3
Format code
gianbelinche Jan 3, 2025
10d95ce
Change full for fs
gianbelinche Jan 3, 2025
26278cb
Remove zksync comment
gianbelinche Jan 3, 2025
48d9de2
Merge pull request #1 from lambdaclass/thiserror
juanbono Jan 3, 2025
01935ad
Merge pull request #2 from lambdaclass/sync-latest-changes
juanbono Jan 3, 2025
3703873
Fix comments (#4)
gianbelinche Jan 7, 2025
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
38 changes: 38 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
[package]
name = "eigen-client"
description = "Eigen Client"
version = "0.1.0"
samlaf marked this conversation as resolved.
Show resolved Hide resolved
edition = "2021"
license = "MIT OR Apache-2.0"

[dependencies]
tokio-stream = "0.1.16"
rust-kzg-bn254 = "0.2.1"
ark-bn254 = "0.5.0"
num-bigint = "0.4.6"
serial_test = "3.1.1"
rlp = "0.5"
rand = "0.8"
sha3 = "0.10.8"
tiny-keccak = "2"
ethabi = "18.0.0"
thiserror = "1"
ethereum-types = { version = "0.14.1", features = ["serialize"] }
prost = "0.12.6"
tonic = { version = "0.11.0", features = ["tls-roots", "prost", "codegen"] }
secp256k1 = { version = "0.27.0", features = ["recovery", "global-context"] }
subxt-signer = { version = "0.34", features = ["sr25519", "native"] }
bytes = {version= "1", features = ["serde"]}
reqwest = {version = "0.12", features = ["json"] }
serde = "1"
serde_json = "1"
backon = "0.4.4"
tokio = "1"
async-trait = "0.1"
hex = "0.4"
secrecy = "0.8.0"
byteorder = "1.5.0"



anyhow = "1" #TODO: Remove
samlaf marked this conversation as resolved.
Show resolved Hide resolved
Binary file added resources/g1.point
Binary file not shown.
Binary file added resources/g2.point.powerOf2
Binary file not shown.
Loading