mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-22 05:10:56 +00:00
26 lines
881 B
Python
26 lines
881 B
Python
from trezor import ui
|
|
from trezor.messages import ButtonRequestType
|
|
from trezor.ui.text import Text
|
|
from trezor.utils import format_amount
|
|
|
|
from . import helpers
|
|
|
|
from apps.common.confirm import require_confirm, require_hold_to_confirm
|
|
from apps.common.layout import split_address
|
|
|
|
|
|
async def require_confirm_fee(ctx, fee):
|
|
text = Text("Confirm fee", ui.ICON_SEND, icon_color=ui.GREEN)
|
|
text.normal("Transaction fee:")
|
|
text.bold(format_amount(fee, helpers.DIVISIBILITY) + " XRP")
|
|
await require_confirm(ctx, text, ButtonRequestType.ConfirmOutput)
|
|
|
|
|
|
async def require_confirm_tx(ctx, to, value):
|
|
|
|
text = Text("Confirm sending", ui.ICON_SEND, icon_color=ui.GREEN)
|
|
text.bold(format_amount(value, helpers.DIVISIBILITY) + " XRP")
|
|
text.normal("to")
|
|
text.mono(*split_address(to))
|
|
return await require_hold_to_confirm(ctx, text, ButtonRequestType.SignTx)
|