{% extends "base.html" %} {% block title %} {{ block.super }} - Balances{% endblock %} {% block content %} {% load humanize %} {% if pending_sweeps %}

Pending Sweeps

{% for sweep in pending_sweeps %} {% endfor %}
Outpoint Amount Type Requested Rate Target Rate Conf Target Total Attempts Next Attempt Force
{{ sweep.txid_str }} {{ sweep.amount_sat|intcomma }} {% if sweep.witness_type == 0 %}Unknown{% elif sweep.witness_type == 1 %}Commitment Time Lock{% elif sweep.witness_type == 13 %}Commitment Anchor{% else %}{{ sweep.witness_type }}{% endif %} {% if sweep.requested_sat_per_vbyte == 0 %}---{% else %}{{ sweep.requested_sat_per_vbyte|intcomma }}{% endif %} {{ sweep.sat_per_vbyte|intcomma }} {{ sweep.requested_conf_target|intcomma }} {{ sweep.broadcast_attempts|intcomma }} {{ sweep.next_broadcast_height|intcomma }} {% if sweep.force %}Yes{% else %}No{% endif %}
{% endif %} {% if utxos %}

Balances

{% for utxo in utxos %} {% endfor %}
Addresses Amount Outpoint Confirmations Fee Bumps 🖩
{{ utxo.address }} {{ utxo.amount_sat|intcomma }} {{ utxo.outpoint.txid_str }} {{ utxo.confirmations|intcomma }} {% if utxo.confirmations == 0 %}
{% else %} --- {% endif %}
{% endif %} {% if transactions %}

Transactions

{% for transaction in transactions %} {% endfor %}
TX Hash Amount Block Height Fees Label
{{ transaction.tx_hash }} {{ transaction.amount|intcomma }} {% if transaction.block_height == 0 %}---{% else %}{{ transaction.block_height|intcomma }}{% endif %} {{ transaction.fee|intcomma }} {{ transaction.label }}
{% endif %} {% if not utxos and not transactions %}

No wallet transactions found!

{% endif %} {% endblock %}