mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-12 17:48:09 +00:00
33 lines
699 B
Python
33 lines
699 B
Python
# Automatically generated by pb2py
|
|
# fmt: off
|
|
import protobuf as p
|
|
|
|
from .HDNodeType import HDNodeType
|
|
|
|
if __debug__:
|
|
try:
|
|
from typing import Dict, List, Optional # noqa: F401
|
|
from typing_extensions import Literal # noqa: F401
|
|
except ImportError:
|
|
pass
|
|
|
|
|
|
class EthereumPublicKey(p.MessageType):
|
|
MESSAGE_WIRE_TYPE = 451
|
|
|
|
def __init__(
|
|
self,
|
|
*,
|
|
node: HDNodeType,
|
|
xpub: str,
|
|
) -> None:
|
|
self.node = node
|
|
self.xpub = xpub
|
|
|
|
@classmethod
|
|
def get_fields(cls) -> Dict:
|
|
return {
|
|
1: ('node', HDNodeType, p.FLAG_REQUIRED),
|
|
2: ('xpub', p.UnicodeType, p.FLAG_REQUIRED),
|
|
}
|