SELECT count (DISTINCT voter) as voter_count,
date_trunc(month, block_timestamp) as date
FROM solana.core.fact_proposal_votes
WHERE governance_platform='realms'
AND succeeded='TRUE'
AND realms_id='DPiH3H3c7t47BMxqTxLsuPQpEC6Kne8GA9VXbxpnZxFE'
group by date
order by date desc