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

Network Statistics

Version

{% if daemon_info.version %}{{ daemon_info.version }}{% else %}?{% endif %}

Difficulty

{{ daemon_info.difficulty }}

Height

{{ daemon_info.height }}

Network

{{ daemon_info.nettype }}

Transaction Count

{{ daemon_info.tx_count }}

Database Size

{% if daemon_info.database_size %}{{ daemon_info.database_size / 1000000000 }} GB{% else %}?{% endif %}

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 %} {% raw %} {% endraw %} {% 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
{{ tx.receive_time }} {{ tx.id_hash | truncate(length=8) }} {{ tx.fee / 1000000000000 }} WOW
{% endblock content %}