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

feat: linea #1885

Merged
merged 8 commits into from
May 13, 2024
Merged
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
140 changes: 140 additions & 0 deletions Cargo.lock

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

7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ members = [
"lib/block-message",
"lib/chain-utils",
"lib/gnark-key-parser",
"lib/gnark-mimc",
"lib/ics-008-wasm-client",
"lib/ics23",
"lib/linea-verifier",
"lib/macros",
"lib/pg-queue",
"lib/poseidon-rs",
Expand Down Expand Up @@ -53,6 +55,7 @@ members = [
"light-clients/ethereum-light-client",
"light-clients/scroll-light-client",
"light-clients/tendermint-light-client",
"light-clients/linea-light-client",

"tools/generate-rust-sol-bindings",
"tools/keygen",
Expand All @@ -63,6 +66,7 @@ members = [
"unionvisor",
"voyager",
"zerg",
"lib/linea-zktrie",
]

[workspace.package]
Expand All @@ -89,8 +93,11 @@ cometbls-groth16-verifier = { path = "lib/cometbls-groth16-verifier", default-fe
contracts = { path = "generated/rust/contracts", default-features = false }
ethereum-verifier = { path = "lib/ethereum-verifier", default-features = false }
gnark-key-parser = { path = "lib/gnark-key-parser", default-features = false }
gnark-mimc = { path = "lib/gnark-mimc", default-features = false }
ics008-wasm-client = { path = "lib/ics-008-wasm-client", default-features = false }
ics23 = { path = "lib/ics23", default-features = false }
linea-verifier = { path = "lib/linea-verifier", default-features = false }
linea-zktrie = { path = "lib/linea-zktrie", default-features = false }
macros = { path = "lib/macros", default-features = false }
pg-queue = { path = "lib/pg-queue", default-features = false }
poseidon-rs = { path = "lib/poseidon-rs", default-features = false }
Expand Down
5 changes: 5 additions & 0 deletions dictionary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ Solana
Subdemom
Sublist
Subo
Subtrie
Tada
Tempdirs
Tendermint
Expand Down Expand Up @@ -172,6 +173,7 @@ Wrapf
XMSB
YMSB
Yair
ZKACCOUNT
ZKTRIE
Zerg
aarch
Expand Down Expand Up @@ -608,6 +610,7 @@ libwasmvmstatic
lifecycles
lightclient
lightclients
linea
linkmode
livenesses
lmfao
Expand Down Expand Up @@ -685,6 +688,7 @@ nois
nolint
nolus
nonexist
noninclusion
noopener
noreferrer
notrunc
Expand Down Expand Up @@ -919,6 +923,7 @@ subsec
subslice
substituters
substores
subtrie
sumbitter
superforms
supermajority
Expand Down
3 changes: 3 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,10 @@
./light-clients/tendermint-light-client/tendermint-light-client.nix
./light-clients/scroll-light-client/scroll-light-client.nix
./light-clients/arbitrum-light-client/arbitrum-light-client.nix
./light-clients/linea-light-client/linea-light-client.nix
./lib/cometbls-groth16-verifier/default.nix
./lib/linea-verifier/default.nix
./lib/linea-zktrie/default.nix
./cosmwasm/cosmwasm.nix
./evm/evm.nix
./tools/rust-proto.nix
Expand Down
2 changes: 2 additions & 0 deletions generated/rust/protos/Cargo.toml

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

8 changes: 8 additions & 0 deletions generated/rust/protos/src/lib.rs

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

Loading
Loading