{% extends "base.html" %} {% block title %}Address {{ address.address }} - LocalScan{% endblock %} {% block content %}
Home / Address

Address Details

{% if address.is_contract %} Contract {% endif %}
Address:
{{ address.address }}
ETH Balance:
{{ address.balance_cached | from_wei }} ETH
First Seen:
Block #{{ address.first_seen_block }}

Token Balances

{% if token_balances %}
{% for tb in token_balances %}
{{ tb.symbol[:2] }}
{{ tb.symbol }}

{{ tb.token_address[:16] }}...

{{ tb.formatted_balance }}

{% endfor %}
{% else %}

No token balances found for this address.

{% endif %}
{% if transactions %} {% for tx in transactions %} {% endfor %}
Txn Hash Block From/To Value
0x{{ tx.hash }} #{{ tx.block_number }} {% if tx.from_address == address.address %} {{ tx.value | from_wei }} ETH
{% else %}

No native transactions found.

{% endif %}
{% endblock %}