├── .github └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── README.md └── src ├── circuit.rs ├── lib.rs └── verkle.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkolasg/halo2-circuits/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkolasg/halo2-circuits/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkolasg/halo2-circuits/HEAD/README.md -------------------------------------------------------------------------------- /src/circuit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkolasg/halo2-circuits/HEAD/src/circuit.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkolasg/halo2-circuits/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/verkle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikkolasg/halo2-circuits/HEAD/src/verkle.rs --------------------------------------------------------------------------------