{% extends "base.html" %} {% block title %}MRWK Ledger #{{ entry.sequence }}{% endblock %} {% block content %}

Ledger entry

{% set type_class = entry.type | replace("_", "-") %}

#{{ entry.sequence }} {{ entry.type | replace("_", " ") | title }}

{{ entry.amount_mrwk }} MRWK

{% if entry.type == "bounty_reserve" %}
Bounty scan status Funds reserved
{% elif entry.type == "bounty_payment" %}
Bounty scan status Award paid
{% elif entry.type == "bounty_release" %}
Bounty scan status Unused reserve released
{% endif %}
Entry hash {{ entry.entry_hash }}
{% if entry.proof_hash %} {% endif %}
From
{% if entry.from %}{{ entry.from }}{% else %}-{% endif %}
To
{% if entry.to %}{{ entry.to }}{% else %}-{% endif %}
Reference
{% set reference_url = safe_public_url(entry.reference) %}
{% if reference_url %}{{ entry.reference }}{% elif entry.reference %}{{ entry.reference }}{% else %}-{% endif %}
Previous hash
{{ entry.previous_hash }}
Entry hash
{{ entry.entry_hash }}
Created
{{ entry.created_at }}
{% if entry.proof_hash %}
Proof hash
{{ entry.proof_hash }}
{% endif %}
{% endblock %}