{% include 'head.html' %} {% include 'navbar.html' %}

Wallet Info

Address:

{{ subaddress }}




Balance

{{ balances.1 }} WOW

({{ balances.0 }} locked)

Transfers

{% for tx in all_transfers | sort(attribute='timestamp', reverse=True) %} {% if tx.type == 'pool' %}{% else %}{% endif %} {% endfor %}
Date Type Tx ID Amount Confirmations Height Fee
{{ tx.timestamp | datestamp }} {{ tx.type }} {{ tx.txid | truncate(12) }} {% if tx.type == 'out' %}{{ tx.destinations.0.amount / 100000000000 }}{% else %}{{ tx.amount / 100000000000 }}{% endif %} WOW {{ tx.confirmations }} {{ tx.height }} {{ tx.fee / 100000000000 }} WOW

Send

{% if current_user.funds_locked %}

Sending funds is currently locked due to a transfer already in progress. Please try again in a few minutes. Pending transfers:

    {% for tx in txs_queued %}
  • {{ tx.amount }} - {{ tx.address }}
  • {% endfor %}
{% else %}
{{ send_form.csrf_token }} {% for f in send_form %} {% if f.name != 'csrf_token' %}
{{ f.label }} {{ f }}
{% endif %} {% endfor %}
    {% for field, errors in send_form.errors.items() %}
  • {{ send_form[field].label }}: {{ ', '.join(errors) }}
  • {% endfor %}
{% endif %}
{% include 'footer.html' %} {% include 'scripts.html' %}