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
8 changes: 4 additions & 4 deletions beacon_node/proof_engine/build/ere_verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::{
path::{Path, PathBuf},
};

const ERE_VERSION: &str = "v0.17.1";
const ERE_VERSION: &str = "v0.17.2";
const LIBRARY_FILENAME: &str = "libere_verifier_c.a";

struct Artifact {
Expand Down Expand Up @@ -48,15 +48,15 @@ pub fn configure() -> Result<(), Box<dyn Error>> {
fn artifact_for_target(target: &str) -> Option<&'static Artifact> {
static DARWIN_ARM64: Artifact = Artifact {
archive_filename: "libere_verifier_c.darwin-arm64.tar.gz",
sha256: "9a81d0d7c2a0f464930ac71aed71f5c0fae19649710447763e477780daa623ed",
sha256: "e2586bb15bff1ebc11e1612bb0f0e57f345cbc1d59e6f3082cc40b9dcd3e9408",
};
static LINUX_AMD64: Artifact = Artifact {
archive_filename: "libere_verifier_c.linux-amd64.tar.gz",
sha256: "5434529fd7c7c72c2feda4787e69e240e71044bb227e31021063c30f279f5d38",
sha256: "9238ce4158c7ce7c26d43be34082b78979085f9c53777c1c15df8bb5e91f728f",
};
static LINUX_ARM64: Artifact = Artifact {
archive_filename: "libere_verifier_c.linux-arm64.tar.gz",
sha256: "ba9e5bac1b2711c382d7b7762ba481d45d1bd5bdf478ac912160fe06b2c79384",
sha256: "100d9f7aef25f7eefee6784a14ccff5aba4928b72777a09e3ce7041bcb8c3023",
};

match target {
Expand Down
4 changes: 2 additions & 2 deletions beacon_node/proof_engine/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::{collections::HashSet, str::FromStr};
use types::execution::ProofType;

// Program verification keys registered by eth-act/ere-guests v0.17.0 for use with the ERE
// v0.17.1 verifier pinned by build/ere_verifier.rs. The client and release versions below
// v0.17.2 verifier pinned by build/ere_verifier.rs. The client and release versions below
// identify the guest binaries that produced the keys.
// Ethrex stateless-validator guests from ethrex v26.0.0.
const DEFAULT_ETHREX_OPENVM_PROGRAM_VK: &str = concat!(
Expand Down Expand Up @@ -133,7 +133,7 @@ impl ProofEngineConfig {

impl Default for ProofEngineConfig {
/// Built-in verifier configuration for every guest registered by `eth-act/ere-guests` at tag
/// `v0.17.0`, for use with the ERE v0.17.1 verifier pinned by `build/ere_verifier.rs`.
/// `v0.17.0`, for use with the ERE v0.17.2 verifier pinned by `build/ere_verifier.rs`.
/// The proof-type assignments are provisional while EIP-8025 is under development.
fn default() -> Self {
Self::new(
Expand Down
2 changes: 1 addition & 1 deletion beacon_node/proof_engine/src/ere/bindings.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Safe ownership wrapper around the minimal ERE verifier C API.
//!
//! The declarations below mirror `ere_verifier.h` as published in ERE v0.17.1, the release
//! The declarations below mirror `ere_verifier.h` as published in ERE v0.17.2, the release
//! pinned by `build/ere_verifier.rs`. `ere_verifier_zkvm_kind` is the only other function the
//! library exports and is deliberately left undeclared: it echoes back the `zkvm_kind`
//! argument the handle was constructed with, which the caller derives from the proof type.
Expand Down
2 changes: 1 addition & 1 deletion beacon_node/proof_engine/tests/known_valid_proofs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! The fixtures are Ethrex v26.0.0 and reth v0.1.0-rc.3 guest artifacts copied from
//! `eth-act/zkboost` at commit `7f99d70a679bd0c0e8951f9d2797183340f80262`. Their program
//! verification keys are registered by `eth-act/ere-guests` v0.17.0 and verified here with ERE
//! v0.17.1, the verifier release pinned by this crate. zkBoost does not publish a Zesu proof
//! v0.17.2, the verifier release pinned by this crate. zkBoost does not publish a Zesu proof
//! fixture at that commit, so Zesu is covered by configuration tests but not by this known-valid
//! proof suite.
#![cfg(feature = "ere-verifier")]
Expand Down
Loading