Transaction {{tx.hash}}
Block |
{{"{:,}".format(tx.block)}} (TX: #{{"{:,}".format(tx.index)}}) |
Fee |
{{"{:,.2f}".format(tx.fee / 1000000) }} HNS |
Rate |
{{"{:,.2f}".format(tx.rate/1000)}} doo/vB |
Hash |
{{ tx.hash[:6] }}...{{ tx.hash[-6:] }} |
Nullam id dolor id nibh ultricies vehicula ut id elit. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus.
Inputs & Outputs
{% for input in tx.inputs %}
{% if input.address %}
{% elif input.coin %}
{{ "{:,.2f}".format(input.coin.value/1000000) }} HNS
{% if input.coin.covenant %}
{% if input.coin.covenant.type != 0 %}
{{ input.coin.covenant }}
{% endif %}
{% endif %}
{% else %}
{% if input.witness %}
{% if input.witness | length == 1 %}
Airdrop/Name Claim
{% else %}
Mining Reward `{{ input.witness[0] | hexToAscii }}`
{% endif %}
{% endif %}
{% endif %}
{% endfor %}
{% for output in tx.outputs %}
{% if output.covenant %}
{% if output.covenant.action == "NONE" %}
{{"{:,.2f}".format(output.value / 1000000) }} HNS
{% else %}
{{ output.covenant | parse_covenant }}
{% endif %}
{% else %}
{{"{:,.2f}".format(output.value / 1000000) }} HNS
{% endif %}
{% endfor %}