{% macro tx_item(tx) %}
  • {{tx['datetime'].strftime('%Y-%m-%d %H:%M')}} Blockheight: {{tx['height']}}
    {{tx['txid'][:32]}}... {% if tx['type'] == 'in' %} + {% else %} - {% endif %} {{tx['amount_human']|round(3)}} WOW {% if 'amount_usd' in tx %} ➞ $ {{tx['amount_usd']}} {% endif %}
  • {% endmacro %}