mirror of
https://github.com/logos-storage/proof-aggregation.git
synced 2026-01-02 13:53:13 +00:00
13 lines
495 B
Rust
13 lines
495 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.bin";
|
|
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.bin";
|
|
pub const PROOF_JSON: &str = "verifier_data/proof.json";
|
|
pub const TREE_PROOF_JSON: &str = "verifier_data/tree_proof.json";
|
|
|
|
|
|
|