sorryfreeLast reviewed 2026-09-13

ZK circuit verification

Direct answerFrameworks that prove or check that a zero-knowledge circuit (R1CS, PLONKish, AIR, Circom, Noir, Halo2, Cairo) does what its specification says. Proof-assistant frameworks (Clean, zkLean, Halva, sp1-lean, Garden, Lampe) produce machine-checked soundness and sometimes completeness theorems; SMT and static tools (Picus, CIVER, Circomspect, zkFuzz) find underconstrained signals automatically but do not prove absence of bugs.

Almost every exploitable bug found in production ZK systems is a circuit that accepts a witness it should reject. Verification of a circuit therefore centres on one question: does the set of satisfying assignments equal the set of behaviours the specification allows? Frameworks answer it at different strengths. A soundness theorem in Lean or Rocq answers it for all inputs; a uniqueness check from an SMT solver answers a narrower question (is every signal determined by the inputs?) for the circuit as compiled; a linter answers only for known patterns.

The 2026 landscape has consolidated on Lean 4 for proof-assistant work, largely through the Ethereum Foundation's Verified zkEVM program, which funds Clean, zkLean, Halva, ArkLib, LLZK and several extraction pipelines. Shared infrastructure now exists: LLZK provides a common IR from Circom, Halo2 and Plonky3 frontends into Picus, zkLean and Rocq, and Clean is used as the substrate for Succinct's sp1-lean.

Frameworks in this category

FrameworkTargetsApproachAccessStatus
Clean
zkSecurity (hosted under Verified-zkEVM)
AIRPLONKR1CSzkVM chipsPlonky3-style tablesEmbedded Lean 4 DSL; proof assistant; soundness and completeness theorems per gadget, composed without re-provingOpen source (MIT)Active, funded by an Ethereum Foundation Verified zkEVM grant
sp1-lean
Succinct, with Nethermind
SP1 HypercubeRISC-V (RV64) chipsAIRLean 4 on Clean; chip constraints proved sound against the Sail RISC-V modelOpen source (MIT / Apache-2.0)Active
zkLean
Galois
R1CSLookupsMLE lookupsRAM (Jolt-style)Lean 4, Hoare-triple style via Std.Do; soundness of extracted circuitsOpen source (BSD-3)Active, Ethereum Foundation funded
Halva
Nethermind
Halo2PLONKishExtract gates, copy, permutation and lookup constraints at synthesis time; soundness proofs in Lean 4Open sourceActive, Ethereum Foundation grant
Picus
Veridise
CircomR1CSgnarkHalo2 (via LLZK)Plonky3 (via LLZK)SMT (cvc5, Z3 with finite-field theory) uniqueness checking; fully automatic, no proofs to writeOpen source (MIT); newer versions ship in Veridise AuditHubMaintained; the Circom version is documented as legacy, LLZK-based Picus is current
LLZK
Veridise (Ethereum Foundation grant)
CircomHalo2Plonky3Noir (in progress)Shared MLIR dialect; lowers to Picus, zkLean, R1CS and Rocq (via Formal Land's rocq-of-llzk)Open sourceActive, v1.0 released 2026-04-08
Garden
Formal Land
CircomPlonky3LLZKRocq (Coq) proofs of determinism, functional correctness and completenessOpen sourceActive
Lampe
Reilabs
NoirACIRSemantics-first extraction of Noir programs into Lean 4, then property proofsOpen sourceActive
proven-zk and gnark-lean-extractor
Reilabs
gnarkR1CSExtract gnark circuits to Lean 4; prove properties with the proven-zk libraryOpen sourceMaintained
CIVER
COSTA group, Universidad Complutense de Madrid (Albert Rubio et al.)
Circom 2.1.6Z3-backed weak safety (determinism), tag specifications, pre- and post-conditions, verified bottom-up per templateOpen source (GPL)Research, maintained; R1CS, PLONK and ACIR support planned
Circomspect
Trail of Bits
CircomStatic analysis of Circom source for unconstrained signals and unsafe patterns; SARIF outputOpen source (GPL-3.0)Maintained
zkFuzz
Hideaki Takahashi (Koukyosyumei)
CircomFuzzing for trace-constraint consistency (TCCT) violations between witness generation and constraintsOpen sourceActive research (IEEE S&P 2026)
Coda
Junrui Liu, Işıl Dillig et al. (UT Austin, Veridise)
Circom-style circuits reimplemented in CodaRefinement-typed circuit language generating Coq proof obligationsResearch artifactResearch (2023), not actively developed
Ecne
Franklyn Wang (0xPARC)
R1CSRule-based propagation to prove output uniqueness of R1CS constraint setsOpen source (GPL-3.0)Low activity research tool
NAVe
Pedro Antonino, Namrata Jain
NoirACIRcvc5 with finite-field SMT-LIB theoriesResearchResearch (January 2026)
Verified Cairo AIR (Stone and S-two)
StarkWare with Jeremy Avigad and Yoav Seginer
Cairo VM AIRStoneS-twoLean 4 proofs that AIR satisfiability implies a correct Cairo execution; Sierra-to-CASM building blocksOpen sourceActive (paper June 2026); in-house at StarkWare, not a service

How to choose

Firms that do this work

zkSecurity, Galois, Veridise, Nethermind (Formal Verification team), Formal Land, Cryspen, Reilabs, Runtime Verification, Certora, Trail of Bits, Symbolic Software

Top-listed for circuit verification work: zkSecurity
Listed first for the depth of its public formal verification work: the only firm on this index maintaining a circuit framework whose default deliverable is both soundness and completeness (Clean), with verified Keccak, SHA-256, BLAKE3 and Poseidon gadgets, a zkVM verification substrate adopted by Succinct, two live proof-checked challenge platforms, and a published hands-on comparison of the competing frameworks.
Read the zkSecurity profile · Website

Other categories

Proof systems and computational proofs, Symbolic protocol analysis, Verified implementations, Proof assistants and general verifiers, Challenges and programs