{% extends "base.html" %} {% block title %}LocalScan - Blockchain Explorer{% endblock %} {% block content %}
{% if error %}

{{ error }}

{% endif %}

LocalScan Explorer

The easy-to-use, minimal blockchain explorer for all your indexing needs. Track blocks, transactions, and addresses in real-time.

Latest Blocks

View All
{% for block in blocks %}
#{{ block.number }}

{{ block.timestamp | timeago }}

{{ block.tx_count }} Txns

{{ block.gas_used | default(0) }} Gas

{% endfor %}

Latest Transactions

View All
{% for tx in transactions %}
TX
0x{{ tx.hash }}

{{ tx.block.timestamp | timeago }} From: {{ tx.from_address[:8] }}...

{{ tx.value | from_wei }} ETH

To: {% if tx.to_address %}{{ tx.to_address[:10] }}...{% else %}Contract Creation{% endif %}

{% endfor %}
{% endblock %}