2018-06-28 11:15:14 +00:00
|
|
|
from trezor import ui
|
|
|
|
from trezor.messages import ButtonRequestType
|
|
|
|
from trezor.ui.text import Text
|
|
|
|
from trezor.utils import format_amount
|
2018-07-10 14:30:36 +00:00
|
|
|
|
2018-06-28 11:15:14 +00:00
|
|
|
from . import helpers
|
|
|
|
|
2018-07-10 14:30:36 +00:00
|
|
|
from apps.common.confirm import require_confirm, require_hold_to_confirm
|
2018-08-27 10:13:38 +00:00
|
|
|
from apps.common.layout import split_address
|
2018-07-10 14:30:36 +00:00
|
|
|
|
2018-06-28 11:15:14 +00:00
|
|
|
|
|
|
|
async def require_confirm_fee(ctx, fee):
|
2018-07-10 14:30:36 +00:00
|
|
|
text = Text("Confirm fee", ui.ICON_SEND, icon_color=ui.GREEN)
|
|
|
|
text.normal("Transaction fee:")
|
|
|
|
text.bold(format_amount(fee, helpers.DIVISIBILITY) + " XRP")
|
2018-06-28 11:15:14 +00:00
|
|
|
await require_confirm(ctx, text, ButtonRequestType.ConfirmOutput)
|
|
|
|
|
|
|
|
|
|
|
|
async def require_confirm_tx(ctx, to, value):
|
|
|
|
|
2018-07-10 14:30:36 +00:00
|
|
|
text = Text("Confirm sending", ui.ICON_SEND, icon_color=ui.GREEN)
|
|
|
|
text.bold(format_amount(value, helpers.DIVISIBILITY) + " XRP")
|
|
|
|
text.normal("to")
|
2018-06-28 11:15:14 +00:00
|
|
|
text.mono(*split_address(to))
|
|
|
|
return await require_hold_to_confirm(ctx, text, ButtonRequestType.SignTx)
|