| 序号 | 前置交易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 %} |
| 序号 | 金额 (BTC) | 地址 | 类型 |
|---|---|---|---|
| {{ vout.n }} | {{ vout.value }} |
{% if vout.scriptPubKey.addresses is defined %}
{% for address in vout.scriptPubKey.addresses %}
{{ address }} {% endfor %} {% else %} 无标准地址 {% endif %} |
{{ vout.scriptPubKey.type }} |