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)