{% extends "base.html" %} {% block title %}Block #{{ block.number }} - LocalScan{% endblock %} {% block content %}
Home / Block {{ block.number }}

Block #{{ block.number }}

Block Height:
{{ block.number }}
Timestamp:
{{ block.timestamp }}
Hash:
0x{{ block.hash }}
Transactions:
{{ block.transactions | length }} transactions
Gas Used/Limit:
{{ block.gas_used }} / {{ block.gas_limit }}
{% if block.transactions %}

Transactions in this Block

{% for tx in block.transactions %} {% endfor %}
Txn Hash From To Value
0x{{ tx.hash }} {{ tx.from_address }} {{ tx.to_address }} {{ tx.value | from_wei }} ETH
{% endif %}
{% endblock %}