{% extends "base.html" %} {% block title %} {{ block.super }} - Dashboard{% endblock %} {% block meta %}{% endblock %} {% block content %} {% load humanize %} Dashboard Last Updated: ... refreshing every 21 minutes

{{ node_info.alias }} | {{ node_info.identity_pubkey }}

LND {% for info in node_info.chains %}{{ info }}{% endfor %} | {{ node_info.block_height }} #{{ node_info.block_hash }}
Public Capacity: 0 Active Channels: {{node_info.num_active_channels}} / {{node_info.num_active_channels|add:node_info.num_inactive_channels}} Peers: {{ node_info.num_peers }} DB Size: {% if db_size > 0 %}{{ db_size }} GB{% else %}---{% endif %} Total States Updates: --- Sign a message
Addresses: {% for addr in node_info.uris %}
{{ addr }}
{% endfor %}
Ratio: 0 Inbound Outbound Unsettled
Active 0 0 0
Inactive 0 0 0
Total 0 0 0
Balance: {{total_balance}} Onchain: {{ balances.total_balance|intcomma }} Confirmed: {{ balances.confirmed_balance|intcomma }} Unconfirmed: {{ balances.unconfirmed_balance|intcomma }} Limbo: {{ limbo_balance|intcomma }} Pending HTLCs: 0{{ pending_htlc_count }}
{% csrf_token %} New Onchain Address | Legacy
Period Routed Fees Earned Fees Paid Onchain fees Cost Profit/Outbound Outbound Utilization
1-Day 0 0 0 0 0 0 0
7-Day 0 0 0 0 0 0 0

P&L Closures New Peers Peer Events AR Actions Fee Rates Autopilot Fee Log Channel Performance Keysends Rebalancing Towers Batching Advanced Settings
Channel ID Peer Alias Outbound Liquidity Capacity Inbound Liquidity Unsettled oRate oBase o1D i1D o7D i7D iRate iBase iTarget% AR
Channel ID Peer Alias Outbound Liquidity Capacity Inbound Liquidity Unsettled oRate oBase iRate iBase Local Commit Local Reserve Downtime Opener iTarget% AR
Channel ID Peer Alias Outbound Liquidity Capacity Inbound Liquidity Unsettled oRate oBase oLife iLife Local Commit Local Reserve Opener Status
{% if pending_open %}

Pending Open Channels

{% for channel in pending_open %} {% endfor %}
Peer Alias Channel Point Capacity Local Balance Remote Balance AF Fee Rate Base Fee CLTV Amt Max Cost% oTarget% iTarget% AR
{% if channel.alias == '' %}{{ channel.remote_node_pub|slice:":12" }}{% else %}{{ channel.alias }}{% endif %} {{ channel.channel_point }} {{ channel.capacity|intcomma }} {{ channel.local_balance|intcomma }} {{ channel.remote_balance|intcomma }}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% endif %} {% if pending_closed %}

Pending Close Channels

{% for channel in pending_closed %} {% endfor %}
Channel ID Peer Alias Capacity Local Balance Remote Balance Balance In Limbo Local Commit Fee Closing TX
{{ channel.short_chan_id }} {% if channel.alias == '' %}{{ channel.remote_node_pub|slice:":12" }}{% else %}{{ channel.alias }}{% endif %} {{ channel.capacity|intcomma }} {{ channel.local_balance|intcomma }} {{ channel.remote_balance|intcomma }} {{ channel.limbo_balance|intcomma }} {{ channel.local_commit_fee_sat|intcomma }} {{ channel.closing_txid }}
{% endif %} {% if pending_force_closed %}

Pending Force Close Channels

{% for channel in pending_force_closed %} {% endfor %}
Channel ID Peer Alias Capacity Local Balance Remote Balance Balance In Limbo Maturity Closing TX
{{ channel.short_chan_id }} {% if channel.alias == '' %}{{ channel.remote_node_pub|slice:":12" }}{% else %}{{ channel.alias }}{% endif %} {{ channel.capacity|intcomma }} {{ channel.local_balance|intcomma }} {{ channel.remote_balance|intcomma }} {{ channel.limbo_balance|intcomma }} {{ channel.maturity_datetime|naturaltime }} {{ channel.closing_txid }}
{% endif %} {% if waiting_for_close %}

Channels Waiting To Close

{% for channel in waiting_for_close %} {% endfor %}
Channel ID Peer Alias Capacity Local Balance Remote Balance Balance In Limbo Local Commit Fee Closing TX
{{ channel.short_chan_id }} {% if channel.alias == '' %}{{ channel.remote_node_pub|slice:":12" }}{% else %}{{ channel.alias }}{% endif %} {{ channel.capacity|intcomma }} {{ channel.local_balance|intcomma }} {{ channel.remote_balance|intcomma }} {{ channel.limbo_balance|intcomma }} {{ channel.local_commit_fee_sat|intcomma }} {{ channel.closing_txid }}
{% endif %}
Timestamp Amount In Amount Out Channel In Alias Channel Out Alias Channel In Id Channel Out Id Fees Earned PPM Earned
{% include 'rebalances_table.html' with count=10 title='Rebalance Requests' %}
Timestamp Value Fee Paid PPM Paid Status Chan Out Alias Chan Out ID Hash Rebalance Keysend
Created Settled Value Amount Paid State Channel In Alias Channel In Hash Keysend
Timestamp Chan In ID Chan Out ID Chan In Alias Chan Out Alias Forward Amount Actual Outbound Potential Fee HTLC Failure Failure Detail
{% include 'local_settings.html' with settings=local_settings title="Auto-Rebalancer" url='rebalancing' %}

Connect to a Peer

{% csrf_token %}

Open a Channel

{% csrf_token %}

Close a Channel

{% csrf_token %}

Create Invoice

{% csrf_token %}

Sign a Message

{% csrf_token %}
{% endblock %}