Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 38 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "1.1.2"
version = "1.1.3"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.80"
Expand Down
2 changes: 1 addition & 1 deletion crates/core/machine/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub use mips::*;
/// This string should be updated whenever any step in verifying a Ziren proof changes, including
/// core, recursion, and plonk-bn254. This string is used to download Ziren artifacts and the gnark
/// docker image.
pub const ZKM_CIRCUIT_VERSION: &str = "v1.1.2";
pub const ZKM_CIRCUIT_VERSION: &str = concat!("v", env!("CARGO_PKG_VERSION"));

// Re-export the `ZKMReduceProof` struct from zkm_core_machine.
//
Expand Down
4 changes: 0 additions & 4 deletions crates/prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,6 @@ path = "scripts/build_compress_vks.rs"
name = "post_trusted_setup"
path = "scripts/post_trusted_setup.rs"

[[bin]]
name = "e2e"
path = "scripts/e2e.rs"

[[bin]]
name = "find_maximal_shapes"
path = "scripts/find_maximal_shapes.rs"
Expand Down
4 changes: 2 additions & 2 deletions crates/prover/TRUSTED_SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ cp trusted-setup/Groth16Verifier.sol build/groth16/Groth16Verifier.sol
## Override Existing VKs

```bash
cp build/groth16/groth16_vk.bin ../crates/verifier/bn254-vk/groth16_vk.bin
cp build/groth16/plonk_vk.bin ../crates/verifier/bn254-vk/plonk_vk.bin
cp build/groth16/groth16_vk.bin ../verifier/bn254-vk/
cp build/plonk/plonk_vk.bin ../verifier/bn254-vk/
```

## Post Trusted Setup
Expand Down
Loading