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

Wallet Info

Address:

{{ address }}




Balance

{{ balances[1] | from_atomic }} WOW ({{ balances[0] | from_atomic }} locked)

Transfers

{% if transfers %} {% for tx in transfers | sort(attribute='timestamp', reverse=True) %} {% if tx.type == 'pool' %}{% else %}{% endif %} {% endfor %} {% endif %}
Date Type Tx ID Amount Confirmations Height Fee
{{ tx.timestamp | datestamp }} {{ tx.type }} {{ tx.txid | truncate(12) }} {{ tx.amount | from_atomic }} WOW {{ tx.confirmations }} {{ tx.height }} {{ tx.fee | from_atomic }} 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 | from_atomic }} - {{ 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' %}