{% extends "base.html" %} {% block title %}MRWK Wallets{% endblock %} {% block content %}

Wallets

MRWK wallets

Create a native mrwk1 address, register the public key, and use signed transactions to move MRWK.

Generate wallet

Private key stays in this browser. Store it yourself; the server cannot recover it.

If you lose the private key, generate a new wallet and register that public key instead.


Registered wallets

Public addresses known to this ledger.

{% if query_text %}

Showing wallets matching “{{ query_text }}”.

{% endif %} {% for wallet in wallets %} {% else %} {% endfor %}
AddressLabelBalanceGitHubSigned actions
{{ wallet.address }} {{ wallet.label or "-" }} {{ wallet.balance_mrwk }} MRWK {% if wallet.github_login %}{{ wallet.github_login }}{% else %}-{% endif %} {{ wallet.nonce }}
{% if query_text %}No registered wallets match this search.{% else %}No registered wallets yet.{% endif %}
{% endblock %}