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

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
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
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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TODO: upstream lambdaclass#1

Binary file added resources/g1.point
Binary file not shown.
Binary file added resources/g2.point.powerOf2
Binary file not shown.
Loading