freemartianMulti Voter Validators
    Updated 2022-11-23
    with validators as (
    select
    label,
    raw_metadata[0]['account_address']::string as validator
    from osmosis.core.dim_labels
    where label_subtype = 'validator'
    )
    select
    count(distinct tx_id) as vote_count,
    label
    from osmosis.core.fact_governance_votes v inner join validators b on b.validator = v.voter
    where proposal_id = '362'
    and TX_STATUS = 'SUCCEEDED'
    and voter in (select validator from validators)
    group by label
    having vote_count > 1



    Run a query to Download Data