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

{{wallet.name}}

{% set active_menuitem = "transactions" %} {% include "includes/wallet_menu.html" %} {% if ( wallet.fullbalance ) is not none %}

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


Latest transactions

{% if wallet.txlist != [] %} {% for tx in wallet.txlist %} {%if tx["block_height"] == -1 %} {%else%} {%endif%} {% endfor %} {% else %} {% endif %}
TxIDAddressAmountConfirmationsTime
{# coinbase txs are 'immature' until 100 confs #} {% if tx['category'] == 'immature' %} {% else %} {% if tx["block_height"] == -1 %} {% else %} {% endif %} {% endif %} {{tx["txid"]}} {{wallet.getaddressname(tx["address"] if tx["category"] != "send" or tx["destination"] == None else tx["destination"]["address"], -1)}} {{tx["amount"] if tx["category"] != "send" or tx["destination"] == None else tx["destination"]["amount"] | btcamount}} {%if tx["block_height"] == -1 %} Pending {% else %} {{specter.info.blocks - tx["block_height"] + 1}} {% endif %} {{tx["time"] | datetime}}
No transactions yet.
{% endif %} {% endblock %}