mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
58 lines
2.1 KiB
Python
58 lines
2.1 KiB
Python
# Automatically generated by pb2py
|
|
# fmt: off
|
|
from .. import protobuf as p
|
|
|
|
from .NEMAggregateModification import NEMAggregateModification
|
|
from .NEMImportanceTransfer import NEMImportanceTransfer
|
|
from .NEMMosaicCreation import NEMMosaicCreation
|
|
from .NEMMosaicSupplyChange import NEMMosaicSupplyChange
|
|
from .NEMProvisionNamespace import NEMProvisionNamespace
|
|
from .NEMTransactionCommon import NEMTransactionCommon
|
|
from .NEMTransfer import NEMTransfer
|
|
|
|
if __debug__:
|
|
try:
|
|
from typing import Dict, List, Optional
|
|
except ImportError:
|
|
Dict, List, Optional = None, None, None # type: ignore
|
|
|
|
|
|
class NEMSignTx(p.MessageType):
|
|
MESSAGE_WIRE_TYPE = 69
|
|
|
|
def __init__(
|
|
self,
|
|
transaction: NEMTransactionCommon = None,
|
|
multisig: NEMTransactionCommon = None,
|
|
transfer: NEMTransfer = None,
|
|
cosigning: bool = None,
|
|
provision_namespace: NEMProvisionNamespace = None,
|
|
mosaic_creation: NEMMosaicCreation = None,
|
|
supply_change: NEMMosaicSupplyChange = None,
|
|
aggregate_modification: NEMAggregateModification = None,
|
|
importance_transfer: NEMImportanceTransfer = None,
|
|
) -> None:
|
|
self.transaction = transaction
|
|
self.multisig = multisig
|
|
self.transfer = transfer
|
|
self.cosigning = cosigning
|
|
self.provision_namespace = provision_namespace
|
|
self.mosaic_creation = mosaic_creation
|
|
self.supply_change = supply_change
|
|
self.aggregate_modification = aggregate_modification
|
|
self.importance_transfer = importance_transfer
|
|
|
|
@classmethod
|
|
def get_fields(cls) -> Dict:
|
|
return {
|
|
1: ('transaction', NEMTransactionCommon, 0),
|
|
2: ('multisig', NEMTransactionCommon, 0),
|
|
3: ('transfer', NEMTransfer, 0),
|
|
4: ('cosigning', p.BoolType, 0),
|
|
5: ('provision_namespace', NEMProvisionNamespace, 0),
|
|
6: ('mosaic_creation', NEMMosaicCreation, 0),
|
|
7: ('supply_change', NEMMosaicSupplyChange, 0),
|
|
8: ('aggregate_modification', NEMAggregateModification, 0),
|
|
9: ('importance_transfer', NEMImportanceTransfer, 0),
|
|
}
|