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/apps/nem/layout.py

46 lines
1.2 KiB

from trezor.enums import ButtonRequestType
from trezor.strings import format_amount
from trezor.ui.layouts import confirm_metadata
from .helpers import NEM_MAX_DIVISIBILITY
async def require_confirm_text(action: str) -> None:
await confirm_metadata(
"confirm_nem",
"Confirm action",
action,
br_code=ButtonRequestType.ConfirmOutput,
)
async def require_confirm_fee(action: str, fee: int) -> None:
await confirm_metadata(
"confirm_fee",
"Confirm fee",
action + "\n{}",
f"{format_amount(fee, NEM_MAX_DIVISIBILITY)} XEM",
ButtonRequestType.ConfirmOutput,
)
async def require_confirm_content(headline: str, content: list) -> None:
from trezor.ui.layouts import confirm_properties
await confirm_properties(
"confirm_content",
headline,
content,
)
async def require_confirm_final(fee: int) -> None:
# we use SignTx, not ConfirmOutput, for compatibility with T1
await confirm_metadata(
"confirm_final",
"Final confirm",
"Sign this transaction\n{}\nfor network fee?",
f"and pay {format_amount(fee, NEM_MAX_DIVISIBILITY)} XEM",
hold=True,
)