{% extends "admin/base_site.html" %} {% load static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Custodial payments

TRON payment operations

{{ configured.network|upper }} network · Treasury {{ configured.treasury_address }}

{{ configured.network|upper }} configured
Confirmed deposits {{ confirmed_payment_count }} {{ confirmed_payment_total }} total atomic units
Needs review {{ failed_sweep_count|add:stale_broadcast_count }} {{ failed_sweep_count }} failed · {{ stale_broadcast_count }} delayed

Runbook

Network operations

All actions run asynchronously through Celery. A broadcast is not treated as settled until its confirmed receipt is recorded.

{% csrf_token %} Query confirmed incoming TRX and configured tokens.
{% csrf_token %} Queue balances that preserve the configured fee reserve.
{% csrf_token %} Sign locally and submit each planned transfer once.
{% csrf_token %} Finalize only successful confirmed receipts.

Deposits

Confirmed asset activity

All payments
{% for asset in asset_summary %} {% empty %} {% endfor %}
AssetTransfersTotal (atomic)
{{ asset.asset_code }}{{ asset.count }}{{ asset.total }}
No confirmed transfers have been recorded on this network.

Treasury

Recent sweeps

All sweeps
    {% for sweep in recent_sweeps %}
  • {{ sweep.asset_code }} {{ sweep.amount_atomic }}{{ sweep.wallet.address }}
    {{ sweep.get_status_display }}
  • {% empty %}
  • No treasury sweep activity yet.
  • {% endfor %}

Ledger

Latest confirmed payments

Open payment ledger
{% for payment in recent_payments %} {% empty %} {% endfor %}
ReceivedAssetAmount (atomic)WalletTransaction
{{ payment.confirmed_at|date:"Y-m-d H:i" }} {{ payment.asset_code }} {{ payment.amount_atomic }} {{ payment.wallet.address }} {{ payment.transaction_id|slice:":16" }}
No confirmed payments have been recorded on this network.
{% endblock %}