{% extends "base" %} {% block content %}

Daemon Statistics

Address: {{ daemon_uri | default(value="?") }}

Version

{{ daemon_info.version | default(value="?") }}

Difficulty

{{ daemon_info.difficulty }}

Height

{{ daemon_info.height }}

Network

{{ daemon_info.nettype }}

Transaction Count

{{ daemon_info.tx_count }}

Database Size

{{ daemon_info.database_size / 1000000000 | default(value="?") }} GB

Connections

{{ daemon_info.incoming_connections_count }} in / {{ daemon_info.outgoing_connections_count }} out

Status

{{ daemon_info.status }}



{% if daemon_info.tx_pool_size > 0 %} {% for tx in tx_pool_txs %} {% endfor %} {% endif %}

Transaction Pool ({{ daemon_info.tx_pool_size }})

Transactions that have yet to be mined into a block. This is where payments sit in a PENDING state.

Received Time Hash Fee Inputs / Outputs Ring Decoys
{{ tx.receive_time | date(format="%Y-%m-%d %H:%M") }} {{ tx.id_hash | truncate(length=8) }} {{ tx.fee / 10000000000 }} WOW {{ tx.tx_json_full.vin | length }} / {{ tx.tx_json_full.vout | length }} {{ tx.tx_json_full.vin.0.key.key_offsets | length }}
{% endblock content %}