{% extends "base.html" %} {% block title %}MergeWork Admin{% endblock %} {% block content %}

Admin

Post a bounty

Signed in as {{ login }}.

{% if proposal_id %}

Created treasury proposal #{{ proposal_id }}.

{% endif %}

Treasury

Treasury reserve capacity

24h cap {{ treasury_status.reserve_cap_mrwk }} MRWK
Reserved in window {{ treasury_status.executed_reserve_24h_mrwk }} MRWK
Pending creates {{ treasury_status.pending_create_reserve_mrwk }} MRWK
Available create reserve {{ treasury_status.available_create_reserve_mrwk }} MRWK
{% if treasury_status.pending_create_bounties and treasury_status.available_create_reserve_mrwk == "0" %}

Pending create-bounty proposals are using current create-bounty capacity. Review their execution times below before opening another round.

{% endif %} {% if treasury_status.next_capacity_release_at %}

Next reserve capacity release: .

{% elif not (treasury_status.pending_create_bounties and treasury_status.available_create_reserve_mrwk == "0") %}

No recent reserve entries are currently limiting create-bounty capacity.

{% endif %} {% if treasury_status.pending_create_bounties %}

Pending create-bounty proposals

{% for proposal in treasury_status.pending_create_bounties %} {% endfor %}
Proposal Issue Reserve Executes after
#{{ proposal.proposal_id }} {{ proposal.title }} {{ proposal.reserve_mrwk }} MRWK {{ proposal.executes_after }}
{% endif %} {% if treasury_status.projected_capacity_events %}

Projected capacity events

Pending create executions do not free capacity immediately. Capacity returns after the executed reserve leaves the 24h window.

{% for event in treasury_status.projected_capacity_events %} {% endfor %}
Time Event Amount Available after
{{ event.at }} {{ event.note }} {{ event.amount_mrwk }} MRWK {{ event.available_create_reserve_mrwk }} MRWK
{% endif %}

Webhooks

Recent delivery outcomes

{% if webhook_status_summary %}
{% for item in webhook_status_summary %}
{{ item.processed_status }} {{ item.count }}
{% endfor %}
{% endif %}
{% if webhook_events %} {% for event in webhook_events %} {% endfor %}
Delivery Event Status Payload hash Created
{{ event.delivery_id }} {{ event.event_type }} {{ event.processed_status }} {{ event.payload_hash }} {{ event.created_at.isoformat() }}
{% else %}

No webhook events found.

{% endif %}
{% endblock %}