{% extends "base.html" %}
{% block content %}
Block {{ b.height }}
{% if b.message %}{{ b.message }}
{% endif %}
Block details
| 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 "-" }} |
{% if time_stats %}
| 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)
|
{% endif %}
Transactions
| Hash | From | Total sent | Fee |
{% if tx_rows %}
{% for h, t, total in tx_rows %}
| {{ h[:20] }}… |
{{ t.from[:24] }}… |
{{ total }} |
{{ t.fee }} |
{% endfor %}
{% else %}
| No transactions |
{% endif %}
{% endblock %}