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

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

Full Hash: {{ tx_hash }}

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

Transaction Fee

{% if tx_info.0.as_json_full.rct_signatures.txnFee %}{{ tx_info.0.as_json_full.rct_signatures.txnFee / 10000000000 }} WOW{% else %}0 (mined){% endif %}

Double Spend

{{ tx_info.0.double_spend_seen }}

In Tx Pool

{{ tx_info.0.in_pool }}

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="?") }}

Prove Sending

{% if tx_info.0.as_json_full %} {% for i in tx_info.0.as_json_full.vin %} {% endfor %} {% endif %}

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

Key Images
{{ i.key.k_image | default(value="none (mined)") }}
{% if tx_info.0.as_json_full %} {% for i in tx_info.0.as_json_full.vout %} {% endfor %} {% endif %}

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

Stealth Addresses
{{ i.target.key }}

Debug Output

{{ debug | json_encode() }}

{% endblock content %}