You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/src/apps/stellar
Tomas Susanka 1ac0f60550
core: update isort config to place relative imports last
4 years ago
..
operations core: introduce safer write_bytes functions 4 years ago
README.md MONOREPO CREATE FROM trezor-core 5 years ago
__init__.py core: use new keychain decorators where appropriate 4 years ago
consts.py common: divisibility -> decimals 5 years ago
get_address.py core: use new keychain decorators where appropriate 4 years ago
helpers.py MONOREPO CREATE FROM trezor-core 5 years ago
layout.py utils: introduce format_plural and move format functions to strings.py 4 years ago
sign_tx.py core: use new keychain decorators where appropriate 4 years ago
writers.py core: update isort config to place relative imports last 4 years ago

README.md

Stellar

MAINTAINER = Tomas Susanka tomas.susanka@satoshilabs.com

AUTHOR = Tomas Susanka tomas.susanka@satoshilabs.com

REVIEWER = Jan Pochyla jan.pochyla@satoshilabs.com

ADVISORS = ZuluCrypto


This implementation of Stellar for Trezor Core is mostly based on the trezor-mcu C implementation by ZuluCrypto.

Stellar has a comprehensive developers documentation.

Transactions

Stellar transaction is composed of one or more operations. We support all operations except the Inflation operation (see here for rationale). A list of supported operations:

  • Account Merge
  • Allow Trust
  • Bump Sequence
  • Change Trust
  • Create Account
  • Create Passive Offer
  • Manage Data
  • Manage Offer
  • Path Payment
  • Payment
  • Set Options

Since a simple transaction can be composed of several operations, first the StellarSignTx message is sent to Trezor, which includes the total number of operations. Then the different operations are consecutively send to Trezor.