mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
54 lines
1.7 KiB
Python
54 lines
1.7 KiB
Python
# Automatically generated by pb2py
|
|
# fmt: off
|
|
from .. import protobuf as p
|
|
|
|
from .TezosBallotOp import TezosBallotOp
|
|
from .TezosDelegationOp import TezosDelegationOp
|
|
from .TezosOriginationOp import TezosOriginationOp
|
|
from .TezosProposalOp import TezosProposalOp
|
|
from .TezosRevealOp import TezosRevealOp
|
|
from .TezosTransactionOp import TezosTransactionOp
|
|
|
|
if __debug__:
|
|
try:
|
|
from typing import Dict, List, Optional
|
|
except ImportError:
|
|
Dict, List, Optional = None, None, None # type: ignore
|
|
|
|
|
|
class TezosSignTx(p.MessageType):
|
|
MESSAGE_WIRE_TYPE = 152
|
|
|
|
def __init__(
|
|
self,
|
|
address_n: List[int] = None,
|
|
branch: bytes = None,
|
|
reveal: TezosRevealOp = None,
|
|
transaction: TezosTransactionOp = None,
|
|
origination: TezosOriginationOp = None,
|
|
delegation: TezosDelegationOp = None,
|
|
proposal: TezosProposalOp = None,
|
|
ballot: TezosBallotOp = None,
|
|
) -> None:
|
|
self.address_n = address_n if address_n is not None else []
|
|
self.branch = branch
|
|
self.reveal = reveal
|
|
self.transaction = transaction
|
|
self.origination = origination
|
|
self.delegation = delegation
|
|
self.proposal = proposal
|
|
self.ballot = ballot
|
|
|
|
@classmethod
|
|
def get_fields(cls) -> Dict:
|
|
return {
|
|
1: ('address_n', p.UVarintType, p.FLAG_REPEATED),
|
|
2: ('branch', p.BytesType, 0),
|
|
3: ('reveal', TezosRevealOp, 0),
|
|
4: ('transaction', TezosTransactionOp, 0),
|
|
5: ('origination', TezosOriginationOp, 0),
|
|
6: ('delegation', TezosDelegationOp, 0),
|
|
7: ('proposal', TezosProposalOp, 0),
|
|
8: ('ballot', TezosBallotOp, 0),
|
|
}
|