{% extends "base.html" %} {% import "macro/pagination.html" as pagination %} {% import "macro/opengraph.html" as opengraph %} {% block opengraph %} {{ opengraph::og( title="DEBUG - UTXO Set scans", description="Shows information about recent UTXO set scans for sanctioned UTXOS", url="/debug/sanctioned-utxo-scans", image_url="/og_image/index.png" ) }} {% endblock opengraph %} {% block content %}

UTXO Set Scans for Sanctioned UTXOs

Information about recent UTXO set scans for sanctioned UTXOs

This is a debug page.

{% if MAX_PAGES == 0 %} {% else %}

{% if CURRENT_PAGE != 0 %}Page {{CURRENT_PAGE}}{% endif %}

{% for scan in scans %} {% endfor %}
time (at end of scan) height (at end of scan) scan duration count of sanctioned UTXOs value of sanctioned UTXOs
{{ scan.end_time | date(format="%Y-%m-%d %H:%M:%S UTC") }} {{ scan.end_height }} {{ scan.duration_seconds }} seconds {{ scan.utxo_count }} {{ scan.utxo_amount / 100000000 }} BTC
{{ pagination::pagination(MAX_PAGES=MAX_PAGES, CURRENT_PAGE=CURRENT_PAGE, QUERY_PAGE=QUERY_PAGE) }} {% endif %}
{% endblock content %}