mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-16 03:28:09 +00:00
74 lines
1.8 KiB
Python
74 lines
1.8 KiB
Python
from typing import TYPE_CHECKING
|
|
|
|
if TYPE_CHECKING:
|
|
from enum import IntEnum
|
|
from typing import Any, Callable, Generic, TypeVar
|
|
|
|
from trezor.utils import BufferReader
|
|
|
|
from .transaction import Instruction
|
|
|
|
Address = tuple[bytes, "AddressType"]
|
|
AddressReference = tuple[bytes, int, "AddressType"]
|
|
Account = Address | AddressReference
|
|
|
|
ProgramIndex = int
|
|
InstructionId = int | None
|
|
AccountIndex = int
|
|
InstructionData = memoryview
|
|
RawInstruction = tuple[
|
|
ProgramIndex, InstructionId, list[AccountIndex], InstructionData
|
|
]
|
|
|
|
T = TypeVar("T")
|
|
else:
|
|
IntEnum = object
|
|
T = 0
|
|
Generic = {T: object}
|
|
|
|
|
|
class AddressType(IntEnum):
|
|
AddressSig = 0
|
|
AddressSigReadOnly = 1
|
|
AddressReadOnly = 2
|
|
AddressRw = 3
|
|
|
|
|
|
class PropertyTemplate(Generic[T]):
|
|
def __init__(
|
|
self,
|
|
name: str,
|
|
is_authority: bool,
|
|
is_optional: bool,
|
|
parse: Callable[[BufferReader], T],
|
|
format: Callable[[Instruction, T], str],
|
|
):
|
|
self.name = name
|
|
self.is_authority = is_authority
|
|
self.is_optional = is_optional
|
|
self.parse = parse
|
|
self.format = format
|
|
|
|
|
|
class AccountTemplate:
|
|
def __init__(self, name: str, is_authority: bool, optional: bool):
|
|
self.name = name
|
|
self.is_authority = is_authority
|
|
self.optional = optional
|
|
|
|
|
|
class UIProperty:
|
|
def __init__(
|
|
self,
|
|
parameter: str | None,
|
|
account: str | None,
|
|
display_name: str,
|
|
is_authority: bool,
|
|
default_value_to_hide: Any | None,
|
|
) -> None:
|
|
self.parameter = parameter
|
|
self.account = account
|
|
self.display_name = display_name
|
|
self.is_authority = is_authority
|
|
self.default_value_to_hide = default_value_to_hide
|