mirror of
https://github.com/logos-storage/proof-aggregation.git
synced 2026-01-02 13:53:13 +00:00
GNARK-Plonky2 Verifier CLI
This repository provides a Go-based CLI for compiling, proving, and verifying Plonky2-wrapped circuits using GNARK (either Plonk or Groth16). It automates:
- Compilation of the plonky2 verifier circuit (R1CS, PK, VK).
- Proof generation for compiled circuits.
- Proof verification.
Prerequisites
- Go 1.22+ installed.
Installation
Clone this repository:
git clone https://github.com/codex-storage/proof-aggregation.git
cd proof-aggregation/gnark-wrapper
go mod tidy
chmod +x compile.sh prove.sh verify.sh test.sh
Building the Verifier Binary
go build -o verifier .
CLI Usage
The verifier binary has three modes:
-compile: Compiles circuit (outputs R1CS, PK, VK, Solidity contract).
-prove: Generates a proof for the compiled circuit.
-verify: Verifies an existing proof.
Flags:
| Flag | Description | Default |
|---|---|---|
-circuit |
Directory containing Plonky2 JSON files | ./testdata/dummy |
-data |
Output directory | ./gnark_output |
-proof-system |
"plonk" or "groth16" |
"groth16" |
-dummy |
Dummy setup (Groth16 only) | "false" |
-contract |
Generate Solidity verifier | "true" |
Workflow
- Prepare your Plonky2 JSON folder
This folder
testdata/dummymust contain:
verifier_only_circuit_data.jsonproof_with_public_inputs.jsoncommon_circuit_data.json
- Compile:
./compile.sh ./testdata/dummy ./gnark_output groth16 false
Produces ./gnark_output/groth16/r1cs.bin, pk.bin, vk.bin, and Verifier.sol.
- Prove:
./prove.sh ./testdata/dummy ./gnark_output groth16 false
Produces ./gnark_output/groth16/proof.json and public_witness.bin.
- Verify:
./verify.sh ./testdata/dummy ./gnark_output groth16 false
Checks proof.json + vk.bin + public_witness.bin.
- (Optional) Full end-to-end
./test.sh ./testdata/dummy ./gnark_output groth16 false
Calls compile → prove → verify in sequence.