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 460ec1d commit 704c927Copy full SHA for 704c927
1 file changed
tooling/cli/src/cmd/mod.rs
@@ -1,7 +1,5 @@
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;
@@ -48,8 +46,6 @@ enum Commands {
48
46
Verify(verify::Args),
49
47
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 {
@@ -68,8 +64,6 @@ impl Command for Commands {
68
64
Self::Verify(args) => args.run(),
69
65
Self::GenerateGnarkInputs(args) => args.run(),
70
66
Self::ShowInputs(args) => args.run(),
71
- Self::ExportSolidity(args) => args.run(),
72
- Self::ExportEvmProof(args) => args.run(),
73
67
74
75
0 commit comments