{% extends "data_explorer/table_entries_base.html" %} {% block table_headers %} {% table_header "id" "ETH Address" min_width=150 %} {% table_header "ens_name" "ENS" min_width=200 %} {% table_header "ethereum_balance" "ETH" min_width=150 %} {% table_header "usdc_balance" "USDC" min_width=150 %} {% table_header "stablecoin_total_balance" "Total Stablecoins" min_width=200 %} {% table_header "assets_total_value_usd" "Total Assets" min_width=150 %} {% table_header "updated_at" "Updated" min_width=250 %} {% endblock %} {% block table_rows %} {% foreign_key_link entry truncate_chars=10 %} {% if entry.ens_name %} {{ entry.ens_name }} {% else %} --- {% endif %} Ξ{{ entry.ethereum_balance|floatformat:6 }} ${{ entry.usdc_balance|floatformat:2 }} ${{ entry.stablecoin_total_balance|floatformat:2 }} ${{ entry.assets_total_value_usd|floatformat:2 }} {{ entry.updated_at|date:"M. jS Y @ P T" }} {% endblock %}