Skip to content

Commit a8b7796

Browse files
committed
wire export-evm-proof and export-solidity into cli command tree
1 parent c75c7b6 commit a8b7796

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

tooling/cli/src/cmd/mod.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
mod analyze_pkp;
22
mod circuit_stats;
3+
mod export_evm_proof;
4+
mod export_solidity;
35
mod generate_gnark_inputs;
46
mod prepare;
57
mod prove;
@@ -46,6 +48,8 @@ enum Commands {
4648
Verify(verify::Args),
4749
GenerateGnarkInputs(generate_gnark_inputs::Args),
4850
ShowInputs(show_inputs::Args),
51+
ExportSolidity(export_solidity::Args),
52+
ExportEvmProof(export_evm_proof::Args),
4953
}
5054

5155
impl Command for Args {
@@ -64,6 +68,8 @@ impl Command for Commands {
6468
Self::Verify(args) => args.run(),
6569
Self::GenerateGnarkInputs(args) => args.run(),
6670
Self::ShowInputs(args) => args.run(),
71+
Self::ExportSolidity(args) => args.run(),
72+
Self::ExportEvmProof(args) => args.run(),
6773
}
6874
}
6975
}

0 commit comments

Comments
 (0)