{% 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 }}



{% for tx in tx_json %}

Ring Sig Type: {{ tx.rct_signatures.type }}

Tx Fee: {{ tx.rct_signatures.txnFee }}

Extra: {{ tx.extra }}

Tx Inputs

{{ tx.vin | length }} {% for vin in tx.vin %}

Amount: {{ vin.key.amount / 1000000000000 }} XMR

Key Image: {{ vin.key.k_image }}

Key Offsets: {{ vin.key.key_offsets }}

{% endfor %}

Tx Outputs

{% for vout in tx.vout %}

Amount: {{ vout.amount / 1000000000000 }} XMR

Stealth Address: {{ vout.target.key }}

{% endfor %} {% endfor %} {% comment %} {% for tx in tx_pool %} {% endfor %} {% endcomment %}

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.

Hash Amount Fee
{{ tx.id_hash | truncate(length=8) }} ? {{ tx.fee / 1000000000000 }} XMR
{% endblock content %}