1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-04 21:48:17 +00:00
trezor-firmware/core/src/apps/tezos
Pavol Rusnak 8cfa5da1ce
docs: fix typos in comments
[skip_ci]
2021-06-30 15:41:55 +02:00
..
__init__.py refactor(core): move app registrations to a single handler function 2021-05-06 13:14:21 +02:00
get_address.py refactor(core/ui): more consistent layout parameter names 2021-06-23 11:51:18 +02:00
get_public_key.py refactor(core): fix imports and use new protobuf API in apps 2021-06-08 09:55:19 +02:00
helpers.py fix(core/tezos): Implement strict length checking. 2021-02-10 16:37:26 +01:00
layout.py refactor(core): convert apps.tezos to layouts 2021-06-23 11:51:18 +02:00
README.md
sign_tx.py docs: fix typos in comments 2021-06-30 15:41:55 +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.