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/core/src/trezor/messages/TezosSignTx.py

46 lines
1.3 KiB

# Automatically generated by pb2py
# fmt: off
import protobuf as p
from .TezosDelegationOp import TezosDelegationOp
from .TezosOriginationOp import TezosOriginationOp
from .TezosRevealOp import TezosRevealOp
from .TezosTransactionOp import TezosTransactionOp
if __debug__:
try:
from typing import List
except ImportError:
List = 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,
) -> 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
@classmethod
def get_fields(cls):
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),
}