68 eth_network: Optional[str],
70 prover_config_file: str,
73 wallet_dir: str) ->
None:
74 if ctx.invoked_subcommand ==
"help":
76 ctx.ensure_object(dict)
77 ctx.obj = ClientConfig(
78 eth_network=eth_network,
79 prover_server_endpoint=prover_server,
80 prover_config_file=prover_config_file,
81 instance_file=instance_file,
82 address_file=address_file,
83 wallet_dir=wallet_dir)
86 zeth.add_command(get_verification_key)
87 zeth.add_command(deploy)
88 zeth.add_command(gen_address)
89 zeth.add_command(sync)
91 zeth.add_command(wait)
92 zeth.add_command(ls_notes)
93 zeth.add_command(ls_commits)
94 zeth.add_command(help)