LittlerDataCopy of Untitled Query
    Updated 2022-06-25
    select
    date_trunc('day',block_timestamp) as day,
    count(*)
    from ethereum.sushi.ez_swaps
    where block_timestamp > '2022-01-01'
    group by 1
    Run a query to Download Data