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/GetOwnershipProof.py

48 lines
1.6 KiB

# Automatically generated by pb2py
# fmt: off
from .. import protobuf as p
from .MultisigRedeemScriptType import MultisigRedeemScriptType
if __debug__:
try:
from typing import Dict, List # noqa: F401
from typing_extensions import Literal # noqa: F401
EnumTypeInputScriptType = Literal[0, 1, 2, 3, 4]
except ImportError:
pass
class GetOwnershipProof(p.MessageType):
MESSAGE_WIRE_TYPE = 49
def __init__(
self,
address_n: List[int] = None,
coin_name: str = None,
script_type: EnumTypeInputScriptType = None,
multisig: MultisigRedeemScriptType = None,
user_confirmation: bool = None,
ownership_ids: List[bytes] = None,
commitment_data: bytes = None,
) -> None:
self.address_n = address_n if address_n is not None else []
self.coin_name = coin_name
self.script_type = script_type
self.multisig = multisig
self.user_confirmation = user_confirmation
self.ownership_ids = ownership_ids if ownership_ids is not None else []
self.commitment_data = commitment_data
@classmethod
def get_fields(cls) -> Dict:
return {
1: ('address_n', p.UVarintType, p.FLAG_REPEATED),
2: ('coin_name', p.UnicodeType, 0), # default=Bitcoin
3: ('script_type', p.EnumType("InputScriptType", (0, 1, 2, 3, 4)), 0), # default=SPENDWITNESS
4: ('multisig', MultisigRedeemScriptType, 0),
5: ('user_confirmation', p.BoolType, 0),
6: ('ownership_ids', p.BytesType, p.FLAG_REPEATED),
7: ('commitment_data', p.BytesType, 0),
}