Skip to content

openvm-org/stark-backend

Repository files navigation

OpenVM Stark Backend

Contributor Docs | Crate Docs

A modular proof system backend for proving and verifying multi-chip circuits with inter-chip communication.

The backend is designed to be modular and compatible with different proof systems, with a focus on performance and extensibility. The aim is to support different circuit representations and permutation/lookup arguments.

Crates

  • openvm-stark-backend: General purpose STARK proving system with multi-trace and logup support, built on top of Plonky3.
  • openvm-stark-sdk: Low-level SDK for use with STARK backend to generate proofs for specific STARK configurations.

Status

As of the v1.0.0 release in March 2025, OpenVM is recommended for production use. OpenVM completed an external audit on Cantina from January to March 2025 as well as an internal audit by members of the Axiom team during the same timeframe.

Security

See SECURITY.md.

Acknowledgements

We studied and built upon the work of other teams in our quest to design a modular and performant proving framework. We would like to thank these teams for sharing their code for open source development:

  • Plonky3: This codebase is built on top of Plonky3, where we have heavily benefited from their modular design at the polynomial IOP level. We extend Plonky3 by providing higher level interfaces for proving multi-chip circuits.
  • Valida: Valida introduced the exceptionally elegant interactions interface for multi-chip communication via logup permutation arguments. We have found this interface quite well thought out and have built upon and extended it.
  • SP1: We learned from SP1's AirBuilder designs, and the original design for the InteractionBuilder was inspired by them.
  • Stwo: We studied Stwo's performant sumcheck implementations and have begun integrating them into our backend.