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'
AND realms_id='By2sVGZXwfQq6rAiAM3rNPJ9iQfb5e2QhnF4YjJ4Bip'
group by date
order by date desc