cheeyoung-kekTotal proposal created in Snapshot
Updated 2022-09-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with
raw as (
select
proposal_id,
min(proposal_start_time) as "Proposal creation date"
from ethereum.core.ez_snapshot
group by 1
),
raw2 as(
select
count (DISTINCT proposal_id)
from raw
),
raw3 as (
SELECT
DISTINCT
proposal,
-- voter,
max(block_timestamp::date) as latest_day,
min(block_timestamp::date) as "Proposal creation date"
--count(distinct proposal) as tx_proposal
FROM solana.core.fact_proposal_votes a
join solana.core.dim_labels b on b.address=a.program_name
WHERE governance_platform='realms'
AND succeeded='TRUE'
group by 1
),
raw4 as(
select
count (DISTINCT proposal) as "New proposal per day"
Run a query to Download Data