{% 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 %}


Latest transactions

{% if wallet.transactions != [] %} {% for tx in wallet.transactions %} {%if tx["confirmations"] == 0 %} {%else%} {%endif%} {% endfor %} {% else %} {% endif %}
TxIDAddressAmountConfirmationsTime
{# coinbase txs are 'immature' until 100 confs #} {% if tx['category'] == 'immature' %} {% else %} {% if tx["confirmations"] == 0 %} {% else %} {% endif %} {% endif %} {{tx["txid"]}} {{wallet.getaddressname(tx["address"], -1)}} {{tx["amount"]}} {%if tx["confirmations"] == 0 %} Pending {% else %} {{tx["confirmations"]}} {% endif %} {{tx["time"] | datetime}}
No transactions yet.
{% endif %} {% endblock %}