| Hash |
{{make_short(data.hash[142:])}} |
| Credit |
{{data.credit}} CHaC |
{% for transaction in data.sent -%}
{% if transaction.senders | length > 1%}
| From: |
{% if transaction.senders %}
{% for sender in transaction.senders -%}
{{make_short(sender,"address")}}
{%- endfor %}
{% else %}
Mining Reward
{%endif %}
|
{% endif %}
| Value: |
Address: |
{% for target in transaction.targets -%}
| {{target.amount}} |
{{make_short(target.recipient_pk,"address")}} |
{%- endfor %}
{%- endfor %}
{% for transaction in data.received -%}
| From: |
{% if transaction.senders %}
{% for sender in transaction.senders -%}
{{make_short(sender,"address")}}
{%- endfor %}
{% else %}
Mining Reward
{%endif %}
|
| Value: |
Address: |
{% for target in transaction.targets -%}
|
{{target.amount}}
|
{{make_short(target.recipient_pk,"address")}}
|
{%- endfor %}
{%- endfor %}
|