gaonipswaps
    Updated 2023-12-16
    -- what is USDC buy volume over time
    select
    date_trunc('month', block_timestamp) as month,
    sum(amount_out_usd) as total_buy_volume
    from
    ethereum.defi.ez_dex_swaps
    where symbol_out = 'USDC'
    group by 1
    Run a query to Download Data