mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 05:58:09 +00:00
25 lines
491 B
Python
25 lines
491 B
Python
|
# Automatically generated by pb2py
|
||
|
# fmt: off
|
||
|
from .. import protobuf as p
|
||
|
|
||
|
from .HDNodeType import HDNodeType
|
||
|
|
||
|
|
||
|
class EthereumPublicKey(p.MessageType):
|
||
|
MESSAGE_WIRE_TYPE = 451
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
node: HDNodeType = None,
|
||
|
xpub: str = None,
|
||
|
) -> None:
|
||
|
self.node = node
|
||
|
self.xpub = xpub
|
||
|
|
||
|
@classmethod
|
||
|
def get_fields(cls):
|
||
|
return {
|
||
|
1: ('node', HDNodeType, 0),
|
||
|
2: ('xpub', p.UnicodeType, 0),
|
||
|
}
|