Skip to content

Commit

Permalink
docs: generating-proofs.md (#1749)
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani authored Nov 4, 2024
1 parent 4370aad commit 97bb83d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions book/generating-proofs/proof-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ client.prove(&pk, stdin).compressed().run().unwrap();

## Groth16 (Recommended)

The Groth16 prover mode generate a SNARK proof that is ~260 bytes large and can be verified onchain for around ~270k gas.
The Groth16 prover mode generates a SNARK proof that is ~260 bytes large and can be verified onchain for around ~270k gas.

The trusted setup for the Groth16 circuit keys uses the [Aztec Ignition ceremony](https://github.com/AztecProtocol/ignition-verification) + entropy contributions from members of the Succinct team.

Expand All @@ -39,7 +39,7 @@ client.prove(&pk, stdin).groth16().run().unwrap();

## PLONK

The PLONK prover mode generate a SNARK proof that is ~868 bytes large and can also be verified onchain for around ~300k gas. Plonk proofs take about ~1m30s longer to generate over a compressed proof.
The PLONK prover mode generates a SNARK proof that is ~868 bytes large and can also be verified onchain for around ~300k gas. Plonk proofs take about ~1m30s longer to generate over a compressed proof.

PLONK does not require a trusted setup.

Expand Down

0 comments on commit 97bb83d

Please sign in to comment.