交易详情

交易ID:
{{ tx.txid }}
区块哈希:
{% if tx.blockhash %} {{ tx.blockhash }} {% else %} 未确认 {% endif %}
确认数:
{{ tx.confirmations if tx.confirmations is defined else 0 }}
时间:
{{ tx.time|timestamp_to_date if tx.time is defined else '未确认' }}
大小:
{{ tx.size }} 字节
权重:
{{ tx.weight }}
版本:
{{ tx.version }}
锁定时间:
{{ tx.locktime }}

输入 ({{ tx.vin|length }})

{% for vin in tx.vin %} {% endfor %}
序号 前置交易ID 索引 脚本
{{ loop.index0 }} {% if vin.txid is defined %} {{ vin.txid }} {% else %} Coinbase {% endif %} {{ vin.vout if vin.vout is defined else 'N/A' }} {% if vin.scriptSig is defined %} {{ vin.scriptSig.asm|truncate(50) }}... {% elif vin.coinbase is defined %} {{ vin.coinbase|truncate(50) }}... {% else %} N/A {% endif %}

输出 ({{ tx.vout|length }})

{% for vout in tx.vout %} {% endfor %}
序号 金额 (BTC) 地址 类型
{{ vout.n }} {{ vout.value }} {% if vout.scriptPubKey.addresses is defined %} {% for address in vout.scriptPubKey.addresses %} {{ address }}
{% endfor %} {% else %} 无标准地址 {% endif %}
{{ vout.scriptPubKey.type }}

返回首页