{% 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 %} {% if specter.chain == "signet" %} {% set url="https://explorer.bc-2.jp/" %} {% endif %} {% 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

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