jackguy362 and Beyond 2
Updated 2022-11-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
SELECT
max(vote_events),
median(vote_events),
avg(vote_events)
FROM (
SELECT
date_trunc('hour', block_timestamp) as day,
count(*) as vote_events
FROM osmosis.core.fact_governance_votes
LEFT outer join osmosis.core.dim_vote_options
on vote_id = vote_option
WHERE proposal_id = 362
AND block_timestamp > '2022-11-13'
GROUP by 1
)
Run a query to Download Data