{% extends "base.html" %} {% block main %}
Balance: {{wallet.balanceonaddr(account) if isaddrview else wallet.balanceonlabel(account) | btcamount}} {% if specter.chain !='main' %}t{%endif%}BTC
TxID | Address | Amount | Confirmations | Time | |
---|---|---|---|---|---|
{# coinbase txs are 'immature' until 100 confs #}
{% if tx['category'] == 'immature' %}
|
{% set display_address = (tx["destination"]["address"] if ("destination" in tx and tx["destination"] != None) else tx["address"])%}
{{tx["txid"]}} | {{wallet.getaddressname(display_address, -1)}} | {{tx["amount"] | btcamount}} | {%if tx["block_height"] == -1 %} Pending {% else %} {{specter.info.blocks - tx["block_height"] + 1}} {% endif %} | {{tx["time"] | datetime}} | No transactions yet. | {% endif %} |