elsinaLido: swap: stETH-WETH volume on DEXs
    Updated 2023-11-07
    select date_trunc('day', block_timestamp) as "Day", platform, sum(amount_in_usd) as "Volume", count(*) as "TX Count"
    from ethereum.core.ez_dex_swaps
    where token_in = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
    group by 1, 2
    order by 1

    Run a query to Download Data