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

Contract Details

Contract
Address:
{{ address.address }}
ETH Balance:
{{ address.balance_cached | from_wei }} ETH
{% if token %} {% endif %} {% if contract %}
Creator:
{% if creator_address %} {{ creator_address }} {% else %} Unknown {% endif %}
Creator Tx:
{% if contract.creator_tx %} {{ contract.creator_tx }} {% else %} Unknown {% endif %}
Creation Block:
{% if contract.creation_block %} #{{ contract.creation_block }} {% else %} Unknown {% endif %}
{% 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 %} {% else %} {% endif %} {{ tx.value | from_wei }} ETH
{% else %}

No transactions found for this contract.

{% endif %}
{% if token %} {% endif %}
{% endblock %}