1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-19 14:08:11 +00:00
trezor-firmware/python/trezorlib/messages/EthereumMessageSignature.py

23 lines
489 B
Python
Raw Normal View History

# Automatically generated by pb2py
# fmt: off
from .. import protobuf as p
class EthereumMessageSignature(p.MessageType):
MESSAGE_WIRE_TYPE = 66
def __init__(
self,
signature: bytes = None,
address: str = None,
) -> None:
self.signature = signature
self.address = address
@classmethod
def get_fields(cls):
return {
2: ('signature', p.BytesType, 0),
3: ('address', p.UnicodeType, 0),
}