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

Send

{% if alert_ok_tx %}
{{ alert_ok_verb }} tx: {{ alert_ok_tx }}
{% endif %} {% if alert_err %}
{{ alert_err }}
{% endif %} {% if alert_err_lines %}
{% for line in alert_err_lines %}{{ line }}
{% endfor %}
{% endif %}
Your address
{{ from_addr }}
Balance
{{ fmt_balance(balance) }}
Fee market
{% if fees.pending == 0 %}Mempool empty; ~{{ "%.3f"|format(fees.next_block) }} ticks/byte (relay floor) clears immediately. {% else %}{{ fees.pending }} pending · ~{{ "%.3f"|format(fees.next_block) }} ticks/byte to clear next block {% endif %}
Outputs, paste CSV (address,amount) or upload file
{% if not xlm_addr %}
No Stellar trading address yet

Create one from the Market page before sending XLM.

{% else %}
Your Stellar address
{{ xlm_addr }}
Spendable
{{ fmt_xlm(xlm_spendable) }} XLM
Locked in reserve
{{ fmt_xlm(xlm_locked) }} XLM
Send XLM
{% endif %}
{% endblock %}