{% extends "base.html" %} {% block main %}

{{wallet.name}}

Transactions Receive Send Settings
{% set url="https://blockstream.info/" %} {% if specter.chain == "test" %} {% set url="https://blockstream.info/testnet/" %} {% endif %} {% if specter.chain == "regtest" %} {% set url="#" %} {% endif %}
Address #{{wallet['address_index']+1}}
( scan to verify )




{{wallet['address']}}


     
Specter can verify this address if you scan it.
It has an address index inluded in the QR code.
{% if (wallet | txonaddr) > 0 %}

Transactions on this address ( {{wallet | txonaddr}} )

{% for tx in wallet.transactions %} {% if tx['address'] == wallet['address'] %} {%if tx["confirmations"] == 0 %} {%else%} {%endif%} {% endif %} {% endfor %}
TxIDAddressAmountConfirmationsTime
{%if tx["confirmations"] == 0 %} {% else %} {%endif%} {{tx["txid"]}} {{tx["address"]}} {{tx["amount"]}} {%if tx["confirmations"] == 0 %} Pending {% else %} {{tx["confirmations"]}} {% endif %} {{tx["time"] | datetime}}
{% endif %} {% endblock %}