mirror of https://github.com/nucypher/nucypher.git
Base CLI entry point for contract upgrading
parent
bd0b6c6871
commit
ee21a355f7
|
@ -34,6 +34,7 @@ from nucypher.config.constants import DEFAULT_CONFIG_ROOT
|
|||
@click.argument('action')
|
||||
@click.option('--force', is_flag=True)
|
||||
@click.option('--poa', help="Inject POA middleware", is_flag=True)
|
||||
@click.option('--upgrade', help="Upgrade an already deployed contract", is_flag=True)
|
||||
@click.option('--no-compile', help="Disables solidity contract compilation", is_flag=True)
|
||||
@click.option('--provider-uri', help="Blockchain provider's URI", type=click.STRING)
|
||||
@click.option('--config-root', help="Custom configuration directory", type=click.Path())
|
||||
|
@ -49,6 +50,7 @@ from nucypher.config.constants import DEFAULT_CONFIG_ROOT
|
|||
def deploy(click_config,
|
||||
action,
|
||||
poa,
|
||||
upgrade,
|
||||
provider_uri,
|
||||
deployer_address,
|
||||
contract_name,
|
||||
|
|
Loading…
Reference in New Issue