{% extends "base.html" %} {% block title %}MRWK Wallet {{ wallet.address }}{% endblock %} {% block content %}

Wallet

{{ wallet.address }}

{{ wallet.balance_mrwk }} MRWK {% if wallet.balance_mrwk == "0" and not transactions %} No activity yet {% endif %}

{% if wallet.label %}
Label
{{ wallet.label }}
{% endif %}
Public key
{{ wallet.public_key_hex }}
GitHub login
{{ wallet.github_login or "-" }}
Signed actions
{{ wallet.nonce }}
Next action number
{{ wallet.next_nonce }}
Account view
ledger account
Send MRWK Link GitHub

To claim GitHub bounty balance, sign in and link this wallet from your contributor account.

Transactions

Credits and debits involving this wallet.

{% if transaction_types %}
{% if selected_transaction_type %}Clear{% endif %}
{% if selected_transaction_type %}

Showing {{ selected_transaction_type }} transactions.

{% endif %} {% endif %} {% for entry in transactions %} {% else %} {% endfor %}
#TypeFromToAmountProof
{{ entry.sequence }} {{ entry.type }} {% if entry.from %}{{ entry.from }}{% else %}-{% endif %} {% if entry.to %}{{ entry.to }}{% else %}-{% endif %} {{ entry.amount_mrwk }} MRWK {% if entry.proof_hash %}proof{% else %}-{% endif %}
{% if selected_transaction_type %}No wallet transactions match this type.{% else %}No wallet transactions yet.{% endif %}
{% endblock %}