{% extends "base" %} {% block content %}
Go Back

Transaction {{ tx_hash | truncate(length=4) }}

Full Hash: {{ tx_hash }}

Block Timestamp: {% if tx_info.0.block_timestamp %}{{ tx_info.0.block_timestamp | date(format="%Y-%m-%d %H:%M") }}{% else %}?{% endif %}

Block Height

{% if tx_info.0.block_height %}{{ tx_info.0.block_height }}{% else %}pending{% endif %}

In Pool

{{ tx_info.0.in_pool }}

Double Spend

{{ tx_info.0.double_spend_seen }}

Transaction Fee

{{ tx_info.0.as_json_full.rct_signatures.txnFee / 1000000000000 | default(value="?") }} WOW

Version

{{ tx_info.0.as_json_full.version | default(value="?") }}

Inputs / Outputs

{{ tx_info.0.as_json_full.vin | length | default(value="?") }} / {{ tx_info.0.as_json_full.vout | length | default(value="?") }}



Stealth Addresses

    {% for i in tx_info.0.as_json_full.vout %}
  1. {{ i.target.key }}
  2. {% endfor %}
{% if tx_info.0.block_height %}

View Block

{% endif %}
{% endblock content %}