1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-12 09:28:10 +00:00
trezor-firmware/core/src/apps/ripple/layout.py

32 lines
1.1 KiB
Python
Raw Normal View History

from trezor import ui
from trezor.messages import ButtonRequestType
from trezor.strings import format_amount
from trezor.ui.text import Text
2018-07-10 14:30:36 +00:00
from apps.common.confirm import require_confirm, require_hold_to_confirm
from apps.common.layout import split_address
2018-07-10 14:30:36 +00:00
from . import helpers
async def require_confirm_fee(ctx, fee):
2019-05-13 13:06:34 +00:00
text = Text("Confirm fee", ui.ICON_SEND, ui.GREEN)
2018-07-10 14:30:36 +00:00
text.normal("Transaction fee:")
2019-12-09 16:43:30 +00:00
text.bold(format_amount(fee, helpers.DECIMALS) + " XRP")
await require_confirm(ctx, text, ButtonRequestType.ConfirmOutput)
2019-01-07 12:59:29 +00:00
async def require_confirm_destination_tag(ctx, tag):
2019-05-13 13:06:34 +00:00
text = Text("Confirm tag", ui.ICON_SEND, ui.GREEN)
2019-01-07 12:59:29 +00:00
text.normal("Destination tag:")
text.bold(str(tag))
await require_confirm(ctx, text, ButtonRequestType.ConfirmOutput)
async def require_confirm_tx(ctx, to, value):
2019-05-13 13:06:34 +00:00
text = Text("Confirm sending", ui.ICON_SEND, ui.GREEN)
2019-12-09 16:43:30 +00:00
text.bold(format_amount(value, helpers.DECIMALS) + " XRP")
2018-07-10 14:30:36 +00:00
text.normal("to")
text.mono(*split_address(to))
await require_hold_to_confirm(ctx, text, ButtonRequestType.SignTx)