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/python/src/trezorlib/messages/MoneroTransactionInitReques...

38 lines
1.1 KiB

# Automatically generated by pb2py
# fmt: off
from .. import protobuf as p
from .MoneroTransactionData import MoneroTransactionData
if __debug__:
try:
from typing import Dict, List, Optional
from typing_extensions import Literal # noqa: F401
except ImportError:
Dict, List, Optional = None, None, None # type: ignore
class MoneroTransactionInitRequest(p.MessageType):
MESSAGE_WIRE_TYPE = 501
def __init__(
self,
version: int = None,
address_n: List[int] = None,
network_type: int = None,
tsx_data: MoneroTransactionData = None,
) -> None:
self.version = version
self.address_n = address_n if address_n is not None else []
self.network_type = network_type
self.tsx_data = tsx_data
@classmethod
def get_fields(cls) -> Dict:
return {
1: ('version', p.UVarintType, 0),
2: ('address_n', p.UVarintType, p.FLAG_REPEATED),
3: ('network_type', p.UVarintType, 0),
4: ('tsx_data', MoneroTransactionData, 0),
}