We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c75c7b6 commit a8b7796Copy full SHA for a8b7796
1 file changed
tooling/cli/src/cmd/mod.rs
@@ -1,5 +1,7 @@
1
mod analyze_pkp;
2
mod circuit_stats;
3
+mod export_evm_proof;
4
+mod export_solidity;
5
mod generate_gnark_inputs;
6
mod prepare;
7
mod prove;
@@ -46,6 +48,8 @@ enum Commands {
46
48
Verify(verify::Args),
47
49
GenerateGnarkInputs(generate_gnark_inputs::Args),
50
ShowInputs(show_inputs::Args),
51
+ ExportSolidity(export_solidity::Args),
52
+ ExportEvmProof(export_evm_proof::Args),
53
}
54
55
impl Command for Args {
@@ -64,6 +68,8 @@ impl Command for Commands {
64
68
Self::Verify(args) => args.run(),
65
69
Self::GenerateGnarkInputs(args) => args.run(),
66
70
Self::ShowInputs(args) => args.run(),
71
+ Self::ExportSolidity(args) => args.run(),
72
+ Self::ExportEvmProof(args) => args.run(),
67
73
74
75
0 commit comments