MrftiTotal monthly proposal count
    Updated 2022-08-16
    SELECT
    COUNT (DISTINCT proposal) as proposal_count,
    date_trunc(month, block_timestamp) as date
    From solana.core.fact_proposal_votes
    where governance_platform ='realms'
    AND succeeded='TRUE'
    group by date
    order by date
    Run a query to Download Data