{% extends "base.html" %} {% block main %} {% include "includes/hwi.html" %}

{{wallet.name}}

Transactions Receive Send Settings

{% if not psbt %}

Sending to:

Recipient address:
  Scan


Amount:
Available: {{"%.8f" % wallet.fullbalance}}


Fees:


Fee rate:


     
{% else %}
Sending {{amount}} BTC to {{address}}

{% if wallet.is_multisig %}
0 signatures acquired
{% endif %}
{# ====================== Possible tx signers' inputs ====================== #} {% if wallet.uses_hwi_device %}
Sign transaction with your:
{% if not wallet.is_multisig %} {% else %} {% for device in wallet.devices %} {% if device.type in ['coldcard', 'keepkey', 'ledger', 'trezor'] %} {% endif %} {% endfor %} {% endif %}
{% endif %} {% if wallet.uses_qrcode_device %}
{{psbt['coldcard']}}
{% endif %} {% if wallet.uses_sdcard_device %}
Download transaction
{% endif %} {# ===================== Possible tx signers' outputs ===================== #} {% if wallet.uses_hwi_device %} {% endif %} {% if wallet.uses_qrcode_device %}
Scan signed transaction
{% endif %}
Paste signed transaction
{% if wallet.uses_sdcard_device %}
{% endif %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}