Zecale - Reconciling Privacy and Scalability on Smart-Contract Chains  0.5
Reference implementation of the Zecale protocol by Clearmatics
Classes | Functions
zecale.cli.__main__ Namespace Reference

Classes

class  HandleRpcExceptions
 

Functions

None zecale (Context ctx, str aggregator_server, str aggregator_config_file, str instance_file, Optional[str] eth_network, Optional[str] eth_addr, Optional[str] eth_private_key)
 

Function Documentation

◆ zecale()

None zecale.cli.__main__.zecale ( Context  ctx,
str  aggregator_server,
str  aggregator_config_file,
str  instance_file,
Optional[str]  eth_network,
Optional[str]  eth_addr,
Optional[str]  eth_private_key 
)

Definition at line 61 of file __main__.py.

61 def zecale(
62  ctx: Context,
63  aggregator_server: str,
64  aggregator_config_file: str,
65  instance_file: str,
66  eth_network: Optional[str],
67  eth_addr: Optional[str],
68  eth_private_key: Optional[str]) -> None:
69  if ctx.invoked_subcommand == "help":
70  ctx.invoke(help)
71  ctx.obj = CommandContext(
72  aggregator_server,
73  aggregator_config_file,
74  instance_file,
75  eth_network,
76  eth_addr,
77  eth_private_key)
78 
79 
80 zecale.add_command(get_verification_key)
81 zecale.add_command(deploy)
82 zecale.add_command(nested_verification_key_hash)
83 zecale.add_command(register)
84 zecale.add_command(submit)
85 zecale.add_command(get_batch)
86 zecale.add_command(check_batch)
87 zecale.add_command(submit_batch)
88 zecale.add_command(wait)
zecale.cli.__main__.zecale
None zecale(Context ctx, str aggregator_server, str aggregator_config_file, str instance_file, Optional[str] eth_network, Optional[str] eth_addr, Optional[str] eth_private_key)
Definition: __main__.py:61