mattkstewStablecoin Landscape on DEX 1
    Updated 2022-06-09
    select
    date_trunc('day', block_timestamp),
    symbol_out,
    sum(amount_out_usd)


    from ethereum.sushi.ez_swaps
    where symbol_out in ('USDC' , 'USDT', 'DAI')
    and block_timestamp > current_date - 90
    group by 1,2
    Run a query to Download Data