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

{{wallet.name}}

{% set active_menuitem = "send" %} {% include "includes/wallet_menu.html" %}
Sending {{psbt["amount"] | btcamount}} BTC to {{wallet.getaddressname(psbt["address"], -1)}}

{% if wallet.is_multisig %}
{{psbt["sigs_count"]}} 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', 'specter'] %} {% 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 %}
{% endblock %} {% block scripts %} {% endblock %}