{% extends "base.html" %} {% import "components/input.html" as input %} {% import "components/output.html" as output %} {% import "components/token_info_table.html" as token_info_table %} {% block body_classes %}overflow-y-scroll{% endblock %} {% block content %}

{{ title }}

{% if tx.is_coinbase %}
Coinbase
{% endif %}
Advanced
{% if is_token %} {% for entry in token_entries %} {% endfor %} {% else %} {% endif %}
Transaction ID {{ tx_hex }}
Copy to clipboard
{% match entry.genesis_info %} {% when Some with (genesis_info) %} {{ genesis_info.token_ticker|string_from_lossy_utf8 }} {% when None %} Unknown {% endmatch %} Token ID {{ entry.token_hex }}
Copy to clipboard
Transaction ID {{ tx_hex }}
Copy to clipboard
Advanced transaction data
Raw Transaction Hex
{{ raw_tx }}
Locktime {{ tx.lock_time|to_i128|render_integer|safe }}
Version
{{ tx.version }}

General Details

Age
{{ timestamp|human_time }}
Final
{% match tx.block %} {% when Some with (block) %} {% if block.is_final %} Yes {% else %} No {% endif %} {% when None %} No {% endmatch %}
Block
{% match tx.block %} {% when Some with (block_meta) %} {{ block_meta.height|to_i128|render_integer|safe }} ({{ confirmations|to_i128|render_integer|safe }} {% if confirmations|to_i128 > 1 %} confirmations) {% else %} confirmation) {% endif %} {% when None %} Not mined yet {% endmatch %}
Unix Timestamp
{% match tx.block %} {% when Some with (block_meta) %} {{ block_meta.timestamp|to_i128|render_integer|safe }} {% when None %} Not mined yet {% endmatch %}
Size
{{ tx.size|u32_to_u64|render_human_size }} ({{ tx.size|to_i128|render_integer_smallify|safe }} B)
Mined On
{% match tx.block %} {% when Some with (block_meta) %}
{% when None %}
Not mined yet
{% endmatch %}
Total Input
{{ sats_input|render_sats|safe }} XEC
Total Output
{{ sats_output|render_sats|safe }} XEC
Fee
{{ (sats_input - sats_output)|max(0) |render_sats|safe }} XEC
{% for entry in token_entries %} {% call token_info_table::render( tx, entry.token_hex, entry.genesis_info, entry.entry, entry.token_input, entry.token_output, entry.token_type, entry.action_str, entry.specification, token_icon_url) %} {% endfor %}

Transaction

Inputs ({{ tx.inputs.len() }})

{{ timestamp }}
Pre-XEC
(Nov 15, 2020)
Over Five
Years Old
Pre-BCH
(Aug 8, 2017)
{% for input in tx.inputs %} {% call input::render( loop.index0, input, tx, sats_addr_prefix, tokens_addr_prefix, token_icon_url) %} {% endfor %}

Outputs ({{ tx.outputs.len() }})

{% for output in tx.outputs %} {% call output::render( loop.index0, output, tx, sats_addr_prefix, tokens_addr_prefix, token_icon_url) %} {% endfor %}
{% endblock %}