barbodDaily volume of Average voting power for **Yes** option
    Updated 2022-04-25
    with t1 as(SELECT
    MSG_VALUE:voter::string as voter
    from terra.msgs
    where MSG_TYPE='gov/MsgVote'
    and MSG_VALUE:option::string='VOTE_OPTION_YES')

    select
    date_trunc('day',block_timestamp) as dt,
    count(PROPOSAL_ID) as vote,
    sum(voting_power) as voting_LUNA,
    voting_LUNA/vote as average_LUNA
    from terra.gov_vote
    where voter in (select voter from t1)
    and block_timestamp>='2021-01-01'
    group by 1
    Run a query to Download Data