1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-16 18:30:57 +00:00
trezor-firmware/src/apps/wallet/__init__.py

70 lines
2.1 KiB
Python
Raw Normal View History

2016-12-08 15:18:12 +00:00
from trezor.wire import register, protobuf_workflow
from trezor.utils import unimport
from trezor.messages.wire_types import \
GetPublicKey, GetAddress, SignTx, EstimateTxSize, \
SignMessage, VerifyMessage, \
2016-11-18 13:59:36 +00:00
SignIdentity, \
CipherKeyValue
@unimport
def dispatch_GetPublicKey(*args, **kwargs):
2016-12-08 15:18:12 +00:00
from .get_public_key import layout_get_public_key
return layout_get_public_key(*args, **kwargs)
2016-06-09 14:06:37 +00:00
2016-10-20 13:04:29 +00:00
@unimport
def dispatch_GetAddress(*args, **kwargs):
2016-12-08 15:18:12 +00:00
from .get_address import layout_get_address
2016-10-20 13:04:29 +00:00
return layout_get_address(*args, **kwargs)
@unimport
def dispatch_SignTx(*args, **kwargs):
2016-12-08 15:18:12 +00:00
from .sign_tx.workflow import sign_tx
return sign_tx(*args, **kwargs)
@unimport
2016-12-08 15:18:12 +00:00
async def dispatch_EstimateTxSize(session_id, msg):
from trezor.messages.TxSize import TxSize
2016-12-08 15:18:12 +00:00
from .sign_tx.signing import estimate_tx_size
m = TxSize()
m.tx_size = estimate_tx_size(msg.inputs_count, msg.outputs_count)
return m
@unimport
def dispatch_SignMessage(*args, **kwargs):
2016-12-08 15:18:12 +00:00
from .sign_message import layout_sign_message
return layout_sign_message(*args, **kwargs)
2016-06-09 15:34:43 +00:00
2016-11-16 21:55:11 +00:00
@unimport
def dispatch_VerifyMessage(*args, **kwargs):
2016-12-08 15:18:12 +00:00
from .verify_message import layout_verify_message
2016-11-16 21:55:11 +00:00
return layout_verify_message(*args, **kwargs)
@unimport
def dispatch_SignIdentity(*args, **kwargs):
2016-12-08 15:18:12 +00:00
from .sign_identity import layout_sign_identity
return layout_sign_identity(*args, **kwargs)
2016-11-18 13:59:36 +00:00
@unimport
def dispatch_CipherKeyValue(*args, **kwargs):
2016-12-08 15:31:10 +00:00
from .cipher_key_value import layout_cipher_key_value
return layout_cipher_key_value(*args, **kwargs)
2016-11-18 13:59:36 +00:00
def boot():
2016-12-08 15:18:12 +00:00
register(GetPublicKey, protobuf_workflow, dispatch_GetPublicKey)
register(GetAddress, protobuf_workflow, dispatch_GetAddress)
register(SignTx, protobuf_workflow, dispatch_SignTx)
register(EstimateTxSize, protobuf_workflow, dispatch_EstimateTxSize)
register(SignMessage, protobuf_workflow, dispatch_SignMessage)
register(VerifyMessage, protobuf_workflow, dispatch_VerifyMessage)
register(SignIdentity, protobuf_workflow, dispatch_SignIdentity)
register(CipherKeyValue, protobuf_workflow, dispatch_CipherKeyValue)