{% extends "base.html" %} {% block title %} {{ block.super }} - Fee Rates{% endblock %} {% block content %} {% load humanize %} {% if channels %}

Suggested Fee Rates

{% for channel in channels %} {% endfor %}
Channel ID Peer Alias Outbound Liquidity Capacity Inbound Liquidity 7Day Flow oAdjustment Suggested oRate iAdjustment Suggested iRate oRate iRate Max Cost Peer oRate Peer iRate Updated
{% csrf_token %}
{% csrf_token %}
{{ channel.short_chan_id }} {% if channel.private == False %}{% endif %}{% if channel.alias == '' %}{{ channel.remote_pubkey|slice:":12" }}{% else %}{{ channel.alias }}{% endif %}{% if channel.private == False %}{% endif %} {{ channel.local_balance|intcomma }} {{ channel.out_percent }}%
{{ channel.remote_balance|intcomma }} {{ channel.in_percent }}% {% if channel.net_routed_7day != 0 %}{{ channel.net_routed_7day }} {% if channel.net_routed_7day > 0 %}OUT{% else %}IN{% endif %}{% else %}0{% endif %} {{ channel.adjustment }} {{ channel.new_rate|intcomma }} {{ channel.inbound_adjustment|intcomma }} {{ channel.new_inbound_rate|intcomma }}
{% csrf_token %}
{% csrf_token %}
{{ channel.ar_max_cost }}% {{ channel.remote_fee_rate|intcomma }} {{ channel.remote_inbound_fee_rate|intcomma }} {{ channel.fees_updated|naturaltime }}
{% csrf_token %}
{% else %}

You dont have any channels to analyze yet!

{% endif %} {% if local_settings %} {% include 'local_settings.html' with settings=local_settings title='Auto-Fees' postURL='update_setting' %} {% endif %} {% endblock %}