peteerDaily top 10 deposited count of symbols
    Updated 2022-09-06
    with top10 as (select top 10 count(*), symbol
    from ethereum.maker.ez_deposits
    group by symbol
    order by count(*) desc)
    select count(*),symbol,date_trunc('day', block_timestamp) from ethereum.maker.ez_deposits
    where symbol in (select symbol from top10)
    group by symbol,date_trunc('day', block_timestamp)

    Run a query to Download Data