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

{{wallet.name}}

Transactions Addresses Receive Send Settings
{% if ( wallet.fullbalance ) is not none %}

Total balance:
{{ "%0.8f" % ( wallet.fullbalance ) | float }} {% if specter.chain !='main' %}t{%endif%}BTC {% if wallet.balance["untrusted_pending"] > 0 %}
( {{ "%0.8f" % wallet.balance["trusted"] | float }} confirmed, {{"%0.8f" % wallet.balance["untrusted_pending"] | float}} pending ) {% endif %}


Address History

{% for address in wallet.addresses | reverse %} {% set addrlabel = wallet.getaddressname(address, wallet.addresses | length - loop.index0 - 1) %}


{{address}}


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