Sbhn_NPMonthly $USDC Swaps by Platform
    Updated 2023-03-03
    SELECT
    date_trunc('month', block_timestamp) as month,
    platform,
    count(DISTINCT tx_hash) as txs,
    count(DISTINCT origin_from_address) as users
    FROM ethereum.core.ez_dex_swaps
    WHERE symbol_in LIKE 'USDC'
    OR symbol_out LIKE 'USDC'
    GROUP BY 1 ,2
    Run a query to Download Data