Zecale - Reconciling Privacy and Scalability on Smart-Contract Chains  0.5
Reference implementation of the Zecale protocol by Clearmatics
__main__.py
Go to the documentation of this file.
1 # Copyright (c) 2015-2022 Clearmatics Technologies Ltd
2 #
3 # SPDX-License-Identifier: LGPL-3.0+
4 
5 from zeth_zecale.create_nested_tx import create_nested_tx
6 from click import group
7 from click_default_group import DefaultGroup # type: ignore
8 
9 
10 @group(cls=DefaultGroup, default_if_no_args=True, default="--help")
11 def zeth_zecale() -> None:
12  """
13  Main entry point to Zeth-Zecale integration functionality.
14  """
15 
16 
17 zeth_zecale.add_command(create_nested_tx)
zeth_zecale.__main__.zeth_zecale
None zeth_zecale()
Definition: __main__.py:11
zeth_zecale.create_nested_tx
Definition: create_nested_tx.py:1