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

Block {{ b.height }}

{% if b.message %}
{{ b.message }}
{% endif %}
Block details
{% if time_stats %} {% endif %}
Hash{{ b.hash }}
Previous{{ b.previous_hash }}
Height{{ b.height }}
Transactions{{ b.transactions | length }}
Builder{{ b.builder or "(none)" }}
Reward{{ fmt_balance(reward) if b.builder else "-" }}
Block time{{ time_stats.own }}s ({{ "+" if time_stats.diff > 0 }}{{ "%.1f" | format(time_stats.diff) }}s vs {{ "%.1f" | format(time_stats.median) }}s median)
Transactions
{% if tx_rows %} {% for h, t, total in tx_rows %} {% endfor %} {% else %} {% endif %}
HashFromTotal sentFee
{{ h[:20] }}… {{ t.from[:24] }}… {{ total }} {{ t.fee }}
No transactions
{% if b.height > 0 %}Prev{% endif %} {% if has_next %}Next{% endif %}
{% endblock %}