hessTotal Daily Volume of Token per Dex (Amount out)
    Updated 2022-06-22
    select date(block_timestamp) as date , platform , sum(amount_out) as total_out
    from ethereum.core.ez_dex_swaps
    where token_out = lower('0x2e9d63788249371f1DFC918a52f8d799F4a38C94') and block_timestamp::date >= '2022-01-01'
    group by 1,2
    Run a query to Download Data