Simulation with live data

Total profit: {{ total_profit }}

    {% for wallet, list in pay_list.items %}
  • {{ wallet.name }} to {{ wallet.address }}:
    • {% for amount, item in list %}
    • {{ amount }} for {{ item }}
    • {% endfor %}
    {% endfor %}

Total for wallets

{% for wallet, amount in collapsed.items %} {{ wallet }}: ${{ amount }} {% endfor %}