{% extends "base.html" %} {% block footer_classes %}hidden{% endblock %} {% block content %}

Address

{% if sats_address == address %}

{{ sats_address }}

{% else %}

{{ token_address }}

{% endif %}
Copy to clipboard

Balance

{{ total_xec|render_sats|safe }} XEC

{% if token_dust > 0 %}

+{{ token_dust|render_sats|safe }} XEC in token dust

{% endif %}

Transactions

{{ address_num_txs }}

{% if sats_address == address %}
{% if total_xec > 0 %} Coins {% else %}
Address is empty
{% endif %} {% if token_dust > 0 %}
eTokens {% endif %}
{% endblock %}