{% 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 {% endif %} {% if token_dust > 0 %}
eTokens
{% for (token_id, json_balance) in json_balances %} {% if token_id != "main" %} {% let token = tokens|get_token(token_id) %} {% match token %} {% when Some with (token) %} {% match token.genesis_info %} {% when Some with (genesis_info) %}
{{ json_balance.token_amount|to_i128|render_token_amount(genesis_info.decimals)|safe }}
{{ genesis_info.token_ticker|string_from_lossy_utf8 }}
{{ genesis_info.token_name|string_from_lossy_utf8 }}
+{{ json_balance.sats_amount|render_sats|safe }} XEC dust
{% when None %} {% endmatch %} {% when None %} {% endmatch %} {% endif %} {% endfor %}
{% endif %}
{% endblock %}