Hosein-maleki-9555MakerDao - number of monthly voters so far
    Updated 2022-09-07
    with voters_tb as (
    select date_trunc('month',block_timestamp) as date ,count(DISTINCT voter) as voters
    from ethereum.maker.ez_governance_votes
    group by date
    order by date asc
    )
    select * from voters_tb
    Run a query to Download Data