mirror of
https://github.com/logos-storage/proof-aggregation.git
synced 2026-01-11 10:13:10 +00:00
12 lines
430 B
Rust
12 lines
430 B
Rust
|
|
/// File constants with full paths - Prover
|
||
|
|
pub const CIRC_INPUT_JSON: &str = "prover_data/input.json";
|
||
|
|
pub const PROVER_CIRC_DATA_JSON: &str = "prover_data/prover_circ_data.json";
|
||
|
|
pub const TARGETS_JSON: &str = "prover_data/targets.json";
|
||
|
|
|
||
|
|
/// File constants with full paths - Verifier
|
||
|
|
pub const VERIFIER_CIRC_DATA_JSON: &str = "verifier_data/verifier_circ_data.json";
|
||
|
|
pub const PROOF_JSON: &str = "verifier_data/proof.json";
|
||
|
|
|
||
|
|
|
||
|
|
|