1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-04-18 16:19:02 +00:00
trezor-firmware/src/apps/tezos
2018-10-28 13:27:54 +01:00
..
__init__.py tezos: supporting only ed25519 curve 2018-09-13 15:06:03 +02:00
get_address.py src/apps: use address_n as description to show_address/show_qr dialogs 2018-10-28 13:27:54 +01:00
get_public_key.py tezos: fixed nitpicks 2018-09-13 15:06:03 +02:00
helpers.py tezos: fixed nitpicks 2018-09-13 15:06:03 +02:00
layout.py tezos: added tezos cryptocurrency 2018-09-13 15:06:03 +02:00
README.md tezos: added Readme 2018-09-13 15:06:03 +02:00
sign_tx.py tezos: delegating contract in origination 2018-10-26 14:42:15 +02:00

Tezos

Tezos documentation can be found here.

Operations

Tezos allows users to use multiple curves for private key derivation, but we support only ed25519 (because it is the most used one) where addresses are prefixed with tz1, public keys with edpk and signatures with edsig. Other curves might be added later on.

Trezor supports basic Tezos user operations - reveal, transaction, origination, delegation. When the account creates first operation in lifetime, reveal has to be bundled with this operation to reveal account's public key.

Operations Explorer

TzScan

Tests

Unit tests are located in the tests directory, device tests are in the python-trezor repository.