proof-aggregation/codex-plonky2-circuits
M Alghazwi c725043c4d remove phantom date and refactor 2024-11-03 11:45:20 +01:00
..
benches add dataset level proof 2024-10-21 13:31:54 +02:00
src remove phantom date and refactor 2024-11-03 11:45:20 +01:00
.gitignore init 2024-10-07 10:36:11 +02:00
Cargo.toml add sample_cells bench 2024-10-18 12:01:01 +02:00
README.md update results and desc 2024-10-18 12:45:31 +02:00

README.md

Codex Plonky2 Circuits

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 is an implementation of the codex storage proofs circuits for the plonky2 proof system.

Code organization

  • capped_tree is an adapted implementation of Merkle tree based on the original plonky2 merkle tree implementation.

  • capped_tree_circuit is the circuit implementation for regular merkle tree implementation (non-safe version) based on the above merkle tree implementation.

  • merkle_safe is the implementation of "safe" merkle tree used in codex, consistent with the one here.

  • safe_tree_circuit is the Plonky2 Circuit implementation of "safe" merkle tree above.

  • prove_single_cell is the Plonky2 Circuit implementation for proving a single cell in slot merkle tree.

  • sample_cells is the Plonky2 Circuit implementation for sampling cells in dataset merkle tree.

  • params is the parameters used in the circuits.

  • utils contains helper functions.

Usage

TODO!

Benchmarks

In here we show the preliminary benchmarks of codex storage proofs circuits.

Running benchmarks

To run the benchmarks for safe merkle tree circuit, you can use the following command:

cargo bench --bench safe_circuit

To run the benchmarks for proving cells circuit, you can use the following command: Note: make sure to adjust the parameters as need in params

cargo bench --bench prove_cells

To run the benchmarks for sampling circuit, you can use the following command: Note: make sure to adjust the parameters as need in params

cargo bench --bench sample_cells

Results

Benchmark results for proving 10 cells (10 samples) in a Slot Merkle tree with max depth 16 with the small tree (block tree) is of depth 5 so 32 cells in each block. Cell data size is 2048 bytes (256 field elements)

Operation Time (ms)
Build 34.4 ms
Prove 50.3 ms
Verify 2.4 ms

Circuit size: 210 gates

Proof size: 116,008 bytes