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

Account

{{ account.account }}

{{ account.balance_mrwk }} MRWK

{% if account.exists %}This account exists on the ledger.{% else %}This account has no ledger activity yet.{% endif %}

Ledger address
{{ account.ledger_address }}
{% if account.github_login %}
GitHub profile
@{{ account.github_login }}
{% endif %}
Send status
{{ account.transfer_status }}
Account JSON Accepted-work JSON Activity for account

Accepted work summary

Proof-backed bounty payments to this account.

{{ accepted_summary.accepted_awards }} accepted awards
{{ accepted_summary.accepted_mrwk }} MRWK accepted MRWK
{% if accepted_summary.latest_proof_hash %} {% set latest_submission_url = safe_public_url(accepted_summary.latest_submission_url) %}

Latest accepted work: {% if latest_submission_url %} {{ accepted_summary.latest_submission_url | replace("https://github.com/", "") }} {% else %} {{ accepted_summary.latest_submission_url }} {% endif %} via #{{ accepted_summary.latest_ledger_sequence }}.

{% else %}

No proof-backed bounty payments yet.

{% endif %}

Pending payouts

Accepted work queued for treasury execution, not proof-backed paid work.

{{ pending_summary.pending_awards }} pending awards
{{ pending_summary.pending_mrwk }} MRWK pending MRWK
{{ pending_summary.next_executes_after or "-" }} next execution
{% if pending_payouts %}
{% for payout in pending_payouts %}
{{ payout.amount_mrwk or "-" }}{% if payout.amount_mrwk %} MRWK{% endif %}
Bounty
{% set pending_issue_url = safe_public_url(payout.issue_url) %}
{% if payout.bounty_url %}Bounty #{{ payout.bounty_id }}{% endif %} {% if payout.bounty_url and pending_issue_url %} · {% endif %} {% if pending_issue_url %}{{ payout.repo }} #{{ payout.issue_number }}{% elif not payout.bounty_url %}-{% endif %}
Submission
{% set pending_submission_url = safe_public_url(payout.submission_url) %}
{% if pending_submission_url %}{{ payout.submission_url | replace("https://github.com/", "") }}{% elif payout.submission_url %}{{ payout.submission_url }}{% else %}-{% endif %}
Accepted by
{{ payout.accepted_by or "-" }}
Executes after
{{ payout.executes_after }}
{% endfor %}
{% else %}

No pending payout proposals for this account.

{% endif %}

Accepted work

Proof-backed bounty payments made to this account.

{% if accepted_work %}
{% for work in accepted_work %}
{{ work.amount_mrwk }} MRWK
Bounty
{% set issue_url = safe_public_url(work.issue_url) %}
{% if work.bounty_url %}Bounty #{{ work.bounty_id }}{% endif %} {% if work.bounty_url and issue_url %} · {% endif %} {% if issue_url %}{{ work.repo }} #{{ work.issue_number }}{% elif not work.bounty_url %}-{% endif %}
Submission
{% set submission_url = safe_public_url(work.submission_url) %}
{% if submission_url %}{{ work.submission_url | replace("https://github.com/", "") }}{% elif work.submission_url %}{{ work.submission_url }}{% else %}-{% endif %}
Accepted by
{{ work.accepted_by or "-" }}
{% endfor %}
{% else %}

No proof-backed accepted work for this account yet.

{% endif %}

Transactions

Credits and debits involving this account.

{% 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 %}
No ledger entries yet.
{% endblock %}