mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-17 21:22:10 +00:00
python/trezorctl: improve file-based arguments
This commit is contained in:
parent
e585d35f34
commit
2678e64a99
@ -21,6 +21,7 @@ _At the moment, the project does **not** adhere to [Semantic Versioning](https:/
|
||||
### Fixed
|
||||
|
||||
- correctly calculate hashes for very small firmwares [f#1082]
|
||||
- unified file arguments in trezorctl
|
||||
|
||||
## [0.12.0] - 2020-04-01
|
||||
[0.12.0]: https://github.com/trezor/trezor-firmware/compare/python/v0.11.6...python/v0.12.0
|
||||
|
@ -81,7 +81,7 @@ Binance Chain commands.
|
||||
Commands:
|
||||
get-address Get Binance address for specified path.
|
||||
get-public-key Get Binance public key.
|
||||
sign-tx Sign Binance transaction
|
||||
sign-tx Sign Binance transaction.
|
||||
|
||||
Bitcoin and Bitcoin-like coins commands.
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
@ -50,16 +50,14 @@ def get_public_key(client, address, show_display):
|
||||
|
||||
|
||||
@cli.command()
|
||||
@click.argument("file", type=click.File("r"))
|
||||
@click.option("-n", "--address", required=True, help=PATH_HELP)
|
||||
@click.option(
|
||||
"-f",
|
||||
"--file",
|
||||
type=click.File("r"),
|
||||
required=True,
|
||||
help="Transaction in JSON format",
|
||||
)
|
||||
@click.option("-f", "--file", is_flag=True, hidden=True, expose_value=False)
|
||||
@with_client
|
||||
def sign_tx(client, address, file):
|
||||
"""Sign Binance transaction"""
|
||||
"""Sign Binance transaction.
|
||||
|
||||
Transaction must be provided as a JSON file.
|
||||
"""
|
||||
address_n = tools.parse_path(address)
|
||||
return binance.sign_tx(client, address_n, json.load(file))
|
||||
|
@ -181,7 +181,7 @@ def get_public_node(client, coin, address, curve, script_type, show_display):
|
||||
|
||||
|
||||
@cli.command()
|
||||
@click.option("-c", "--coin", "_ignore", is_flag=True, hidden=True, expose_value=False)
|
||||
@click.option("-c", "--coin", is_flag=True, hidden=True, expose_value=False)
|
||||
@click.argument("json_file", type=click.File())
|
||||
@with_client
|
||||
def sign_tx(client, json_file):
|
||||
|
@ -38,13 +38,8 @@ def cli():
|
||||
|
||||
|
||||
@cli.command()
|
||||
@click.option(
|
||||
"-f",
|
||||
"--file",
|
||||
type=click.File("r"),
|
||||
required=True,
|
||||
help="Transaction in JSON format",
|
||||
)
|
||||
@click.argument("file", type=click.File("r"))
|
||||
@click.option("-f", "--file", is_flag=True, hidden=True, expose_value=False)
|
||||
@click.option(
|
||||
"-p", "--protocol-magic", type=int, default=cardano.PROTOCOL_MAGICS["mainnet"]
|
||||
)
|
||||
|
@ -41,14 +41,9 @@ def get_public_key(client, address, show_display):
|
||||
|
||||
|
||||
@cli.command()
|
||||
@click.argument("file", type=click.File("r"))
|
||||
@click.option("-n", "--address", required=True, help=PATH_HELP)
|
||||
@click.option(
|
||||
"-f",
|
||||
"--file",
|
||||
type=click.File("r"),
|
||||
required=True,
|
||||
help="Transaction in JSON format",
|
||||
)
|
||||
@click.option("-f", "--file", is_flag=True, hidden=True, expose_value=False)
|
||||
@with_client
|
||||
def sign_transaction(client, address, file):
|
||||
"""Sign EOS transaction."""
|
||||
|
@ -168,7 +168,7 @@ def find_best_firmware_version(
|
||||
|
||||
@click.command()
|
||||
# fmt: off
|
||||
@click.option("-f", "--filename")
|
||||
@click.option("-f", "--filename", type=click.File("rb"))
|
||||
@click.option("-u", "--url")
|
||||
@click.option("-v", "--version")
|
||||
@click.option("-s", "--skip-check", is_flag=True, help="Do not validate firmware integrity")
|
||||
@ -224,7 +224,7 @@ def firmware_update(
|
||||
model = client.features.model or "1"
|
||||
|
||||
if filename:
|
||||
data = open(filename, "rb").read()
|
||||
data = filename.read()
|
||||
else:
|
||||
if not url:
|
||||
if version:
|
||||
|
@ -52,11 +52,9 @@ def get_public_key(client, address, show_display):
|
||||
|
||||
|
||||
@cli.command()
|
||||
@click.argument("file", type=click.File("r"))
|
||||
@click.option("-n", "--address", required=True, help=PATH_HELP)
|
||||
@click.option(
|
||||
"-f", "--file", type=click.File("r"), default="-", help="Transaction in JSON format"
|
||||
)
|
||||
# @click.option('-b', '--broadcast', help='Broadcast Lisk transaction')
|
||||
@click.option("-f", "--file", is_flag=True, hidden=True, expose_value=False)
|
||||
@with_client
|
||||
def sign_tx(client, address, file):
|
||||
"""Sign Lisk transaction."""
|
||||
|
@ -42,18 +42,16 @@ def get_address(client, address, network, show_display):
|
||||
|
||||
|
||||
@cli.command()
|
||||
@click.argument("file", type=click.File("r"))
|
||||
@click.option("-n", "--address", required=True, help=PATH_HELP)
|
||||
@click.option(
|
||||
"-f",
|
||||
"--file",
|
||||
type=click.File("r"),
|
||||
default="-",
|
||||
help="Transaction in NIS (RequestPrepareAnnounce) format",
|
||||
)
|
||||
@click.option("-f", "--file", is_flag=True, hidden=True, expose_value=False)
|
||||
@click.option("-b", "--broadcast", help="NIS to announce transaction to")
|
||||
@with_client
|
||||
def sign_tx(client, address, file, broadcast):
|
||||
"""Sign (and optionally broadcast) NEM transaction."""
|
||||
"""Sign (and optionally broadcast) NEM transaction.
|
||||
|
||||
Transaction file is expected in the NIS (RequestPrepareAnnounce) format.
|
||||
"""
|
||||
address_n = tools.parse_path(address)
|
||||
transaction = nem.sign_tx(client, address_n, json.load(file))
|
||||
|
||||
|
@ -40,10 +40,9 @@ def get_address(client, address, show_display):
|
||||
|
||||
|
||||
@cli.command()
|
||||
@click.argument("file", type=click.File("r"))
|
||||
@click.option("-n", "--address", required=True, help=PATH_HELP)
|
||||
@click.option(
|
||||
"-f", "--file", type=click.File("r"), default="-", help="Transaction in JSON format"
|
||||
)
|
||||
@click.option("-f", "--file", is_flag=True, hidden=True, expose_value=False)
|
||||
@with_client
|
||||
def sign_tx(client, address, file):
|
||||
"""Sign Ripple transaction"""
|
||||
|
@ -104,7 +104,10 @@ def flags(client, flags):
|
||||
|
||||
|
||||
@cli.command()
|
||||
@click.option("-f", "--filename", default=None)
|
||||
@click.argument(
|
||||
"filename", type=click.Path(dir_okay=False, readable=True), required=False
|
||||
)
|
||||
@click.option("-f", "--filename", is_flag=True, hidden=True, expose_value=False)
|
||||
@with_client
|
||||
def homescreen(client, filename):
|
||||
"""Set new homescreen."""
|
||||
|
@ -50,14 +50,9 @@ def get_public_key(client, address, show_display):
|
||||
|
||||
|
||||
@cli.command()
|
||||
@click.argument("file", type=click.File("r"))
|
||||
@click.option("-n", "--address", required=True, help=PATH_HELP)
|
||||
@click.option(
|
||||
"-f",
|
||||
"--file",
|
||||
type=click.File("r"),
|
||||
default="-",
|
||||
help="Transaction in JSON format (byte fields should be hexlified)",
|
||||
)
|
||||
@click.option("-f", "--file", is_flag=True, hidden=True, expose_value=False)
|
||||
@with_client
|
||||
def sign_tx(client, address, file):
|
||||
"""Sign Tezos transaction."""
|
||||
|
Loading…
Reference in New Issue
Block a user