Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Blobkzg Circuit for EIP 4844 #106

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 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
3 changes: 3 additions & 0 deletions zkevm-circuits/src/blobkzg_circuit/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

target/
Cargo.lock
18 changes: 18 additions & 0 deletions zkevm-circuits/src/blobkzg_circuit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[package]
name = "blobkzg-circuit"
version = "0.1.0"
edition = "2021"
authors = ["mabbamOG <mariobarbara@protonmail.ch>"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
halo2_proofs = { git = "https://github.com/mabbamOG/halo2.git" }
halo2wrong_integer = {package = "integer", git = "https://github.com/mabbamOG/halo2wrong"}
halo2wrong_maingate = {package = "maingate", git = "https://github.com/mabbamOG/halo2wrong"}

[dev-dependencies]
rand_core = "0.6.4"
lazy_static = "1.4.0"

[workspace] # necessary for testing
Loading