mattkstewosmosis 7
    Updated 2023-01-14
    with tab1 as (
    select
    voter,
    min(block_timestamp) as date1

    from osmosis.core.fact_governance_votes
    group by 1 )

    select
    date_trunc('week', date1) ,
    count(*)

    from tab1
    group by 1
    Run a query to Download Data