chillDaily votes of top 10 proposal IDs
    Updated 2022-09-06
    with tbl1 as (SELECT count(*) , PROPOSAL_ID FROM ethereum.maker.ez_governance_votes
    group by 2
    order by 1 DESC
    limit 10)

    select count(*) , PROPOSAL_ID , block_timestamp::date from ethereum.maker.ez_governance_votes
    where PROPOSAL_ID in (select PROPOSAL_ID from tbl1)
    group by 2,3
    Run a query to Download Data