We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 266298e commit bde3b89Copy full SHA for bde3b89
prover/src/utils/evm.rs
@@ -1,4 +1,4 @@
1
-use std::path::Path;
+use std::path::{Path, PathBuf};
2
3
use halo2_proofs::{
4
halo2curves::bn256::{Bn256, Fr, G1Affine},
@@ -24,12 +24,15 @@ pub fn gen_evm_verifier<C: CircuitExt<Fr>>(
24
evm_proof: &EvmProof,
25
output_dir: Option<&str>,
26
) -> Result<(), ProverError> {
27
+ // YUL contract code will be dumped to the following path.
28
+ let yul_path = output_dir.map(|dir| PathBuf::from(dir).join("evm_verifier.yul"));
29
+
30
// Generate deployment code and dump YUL file.
31
let deployment_code = snark_verifier_sdk::gen_evm_verifier::<C, Kzg<Bn256, Bdfg21>>(
32
params,
33
vk,
34
evm_proof.num_instance.clone(),
- None,
35
+ yul_path.as_deref(),
36
);
37
38
// Write the contract binary if an output directory was specified.
0 commit comments