mogarchyTrust Monthly Refunds
    Updated 2023-09-17
    SELECT date_trunc('month', block_timestamp) as month,
    COUNT(DISTINCT TX_ID) AS Refunds
    FROM thorchain.core.fact_refund_events
    WHERE MEMO LIKE '%:te:%'
    GROUP BY month
    ORDER BY month ASC
    Run a query to Download Data