proof-aggregation/proof-input
M Alghazwi e843d68a4d update readme and refactor 2024-11-14 10:31:32 +01:00
..
benches re-arrange code and refactor 2024-11-08 12:23:55 +01:00
src update readme and refactor 2024-11-14 10:31:32 +01:00
.gitignore clean up 2024-11-08 12:26:50 +01:00
BENCHMARKS.md update readme and refactor 2024-11-14 10:31:32 +01:00
Cargo.toml re-arrange code and refactor 2024-11-08 12:23:55 +01:00
README.md update readme and refactor 2024-11-14 10:31:32 +01:00

README.md

Input Generator for the Plonky2 Circuit

WARNING: This is a work-in-progress prototype, and has not received careful code review. This implementation is NOT ready for production use.

This crate generates input to the proof circuit based on the test parameters. The proof input generated can be ported into the plonky2 codex proof circuits. Currently only generates fake data for testing.

Code organization

  • gen_input contains the necessary function to generate the proof input.

  • json contains the serialization function to read and write the proof input from/to json files.

  • params is the test parameters used to generate the input. The params include circuit params as well.

  • sponge contains the non-circuit version of hash function (with and without padding) used to hash cells and during sampling.

  • utils contains helper functions.

Usage

see workflow for how to generate proof input.

Benchmarks

see BENCHMARKS.md