{% extends "base.html" %} {% block title %}Transactions - LocalScan{% endblock %} {% block content %}

Transactions

{% for tx in transactions %} {% endfor %}
Txn Hash Block Time From To Value Status
0x{{ tx.hash }} #{{ tx.block_number }} {{ tx.block.timestamp | timeago }} {{ tx.from_address[:10] }}...{{ tx.from_address[-8:] }} {{ tx.to_address[:10] }}...{{ tx.to_address[-8:] if tx.to_address else '' }} {{ tx.value | from_wei }} ETH {% if tx.status == 1 %} Success {% elif tx.status == 0 %} Fail {% else %} Pending {% endif %}
{% endblock %}