diff --git a/sz-poc-offsite-2025/evm/prover/justfile b/sz-poc-offsite-2025/evm/prover/justfile new file mode 100644 index 0000000..3730751 --- /dev/null +++ b/sz-poc-offsite-2025/evm/prover/justfile @@ -0,0 +1,6 @@ + + +run bin +ARGS: + RUST_LOG=info ./zeth-{{bin}} {{ARGS}} + +ethereum +ARGS: (run "ethereum" ARGS) diff --git a/sz-poc-offsite-2025/evm/prover/src/main.rs b/sz-poc-offsite-2025/evm/prover/src/main.rs index 8694f4e..4f35327 100644 --- a/sz-poc-offsite-2025/evm/prover/src/main.rs +++ b/sz-poc-offsite-2025/evm/prover/src/main.rs @@ -1,9 +1,9 @@ use clap::Parser; use reqwest::blocking::Client; -use serde_json::{Value, json}; +use serde_json::{json, Value}; use std::{path::PathBuf, process::Command, thread, time::Duration}; use tracing::{debug, error, info}; -use tracing_subscriber::{EnvFilter, fmt}; +use tracing_subscriber::{fmt, EnvFilter}; #[derive(Parser, Debug)] #[clap(author, version, about = "Ethereum Proof Generation Tool")] diff --git a/sz-poc-offsite-2025/evm/prover/zeth-ethereum b/sz-poc-offsite-2025/evm/prover/zeth-ethereum new file mode 100755 index 0000000..c02386f Binary files /dev/null and b/sz-poc-offsite-2025/evm/prover/zeth-ethereum differ