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/src/apps/stellar/__init__.py

11 lines
304 B

from trezor import wire
from trezor.messages import MessageType
from apps.common import HARDENED
def boot():
ns = [["ed25519", HARDENED | 44, HARDENED | 148]]
wire.add(MessageType.StellarGetAddress, __name__, "get_address", ns)
wire.add(MessageType.StellarSignTx, __name__, "sign_tx", ns)