| UTXO Digest: |
{{Tip5::hash(&utxo_info.utxo()).to_hex()}} |
| Sender Randomness: |
{{utxo_info.sender_randomness().to_hex()}} |
| Receiver Digest |
{{utxo_info.receiver_digest().to_hex()}} |
{% if let Some(receiver_preimage) = utxo_info.receiver_preimage() { %}
| Receiver Preimage |
{{receiver_preimage.to_hex()}} |
{% } %}
{% if utxo_info.utxo().has_native_currency() { %}
| Amount: |
{{utxo_info.utxo().get_native_currency_amount().display_n_decimals(5)}} XNT |
{% } %}
{% if let Some(release_date) = utxo_info.utxo().release_date() { %}
| Time-Locked Until |
{{release_date.standard_format()}} |
{% } %}
{% if let Some(confirmed_in) = utxo_info.confirmed_in_block() { %}
| Confirmed in Block: |
{{confirmed_in.to_hex()}} |
{% } %}
{% if !utxo_info.spent_in_block().is_empty() { %}
{% if utxo_info.spent_in_block().len() == 1 { %}
| Spent in Block: |
{% } else { %}
Spent in Blocks: |
{% } %}
{% for b in utxo_info.spent_in_block() { %}
{{b.to_hex()}}
{% } %}
|
{% } %}