{% extends 'base.html' %} {% block content %}

Wallet

Available balance: {{ '%.4f'|format(balance) }} XMR

The amount you enter is the total withdrawn from your wallet. The destination receives that amount minus the selected Monero network fee.

{% if deposit_wallet %}

Your XMR deposit address: {{ deposit_wallet.wallet_address }}

{% elif wallet_error %}

{{ wallet_error }}

{% endif %}

Withdraw XMR

Fee tiers are adjustable: Economy aims for lower fees with slower confirmation, while Flash targets the shortest wait with the highest fee. Exact fee and payout appear after estimation or send.

{% if user.account_type == 'seller' and user.approval_status == 'on_review' %}

Seller withdrawals stay pending until an admin approves them while your account is on review.

{% endif %}
{% if withdrawal_requests %}

Recent withdrawals

{% for withdrawal in withdrawal_requests %} {% endfor %}
IDRequested totalEstimated / sent payoutNetwork feeSpeedAddressStatusNoteTXIDUpdated
#{{ withdrawal.id }} {{ '%.6f'|format(withdrawal.amount_xmr) }} XMR {% if withdrawal.net_amount_xmr is not none %}{{ '%.6f'|format(withdrawal.net_amount_xmr) }} XMR{% else %}Pending fee estimate{% endif %} {% if withdrawal.network_fee_xmr is not none %}{{ '%.6f'|format(withdrawal.network_fee_xmr) }} XMR{% else %}Pending estimate{% endif %} {{ withdrawal.fee_priority_label }} · {{ withdrawal.fee_eta }} {{ withdrawal.destination_address }} {{ withdrawal.status }}{% if withdrawal.requires_admin_approval %} · admin review{% elif withdrawal.status == 'pending' %} · queued{% endif %} {% if withdrawal.admin_note %}{{ withdrawal.admin_note }}{% else %}-{% endif %} {% if withdrawal.txid %}{{ withdrawal.txid }}{% else %}-{% endif %} {{ withdrawal.updated_at }}
{% endif %} {% if pending_deposits %}

Pending Monero deposits

These deposits have been seen but still need {{ min_confirmations }} confirmations before crediting.

{% for deposit in pending_deposits %} {% endfor %}
TXIDAmountConfirmationsRemainingSeen
{{ deposit.txid }} {{ '%.6f'|format(deposit.amount_xmr) }} XMR {{ deposit.confirmations }} / {{ min_confirmations }} {{ [min_confirmations - deposit.confirmations, 0]|max }} {{ deposit.seen_at }}
{% endif %} {% for e in entries %} {% else %}{% endfor %}
TypeAmountNoteTime
{{ e.entry_type }}{{ '%.4f'|format(e.amount) }}{{ e.note }}{{ e.created_at }}
No entries yet.
{% endblock %}