mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
# Automatically generated by pb2py
|
|
# fmt: off
|
|
from .. import protobuf as p
|
|
|
|
if __debug__:
|
|
try:
|
|
from typing import Dict, List, Optional
|
|
except ImportError:
|
|
Dict, List, Optional = None, None, None # type: ignore
|
|
|
|
|
|
class NEMTransactionCommon(p.MessageType):
|
|
|
|
def __init__(
|
|
self,
|
|
address_n: List[int] = None,
|
|
network: int = None,
|
|
timestamp: int = None,
|
|
fee: int = None,
|
|
deadline: int = None,
|
|
signer: bytes = None,
|
|
) -> None:
|
|
self.address_n = address_n if address_n is not None else []
|
|
self.network = network
|
|
self.timestamp = timestamp
|
|
self.fee = fee
|
|
self.deadline = deadline
|
|
self.signer = signer
|
|
|
|
@classmethod
|
|
def get_fields(cls) -> Dict:
|
|
return {
|
|
1: ('address_n', p.UVarintType, p.FLAG_REPEATED),
|
|
2: ('network', p.UVarintType, 0),
|
|
3: ('timestamp', p.UVarintType, 0),
|
|
4: ('fee', p.UVarintType, 0),
|
|
5: ('deadline', p.UVarintType, 0),
|
|
6: ('signer', p.BytesType, 0),
|
|
}
|