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

Block {{ block_header.height }}

Hash: {{ block_header.hash }}

Timestamp: {{ block_header.timestamp }}

Size

{{ block_header.block_size }} bytes

Depth

{{ block_header.depth }}

Difficulty

{{ block_header.difficulty }}

Transactions

{% if tx_hashes %}{{ tx_hashes | length }}{% else %}0{% endif %}

Orphaned

{{ block_header.orphan_status }}

Nonce

{{ block_header.nonce }}



{% if tx_hashes %} {% for hash in tx_hashes %} {% endfor %} {% endif %}

Block Transactions

Coinbase Hash Amount Fee Bytes
{{ block_header.miner_tx_hash }} {{ block_header.reward / 1000000000000 }} XMR 0 ?
{{ hash }} ? ? ?

Previous Block

{% endblock content %}