jackguysnapshot 1
    Updated 2024-02-14
    SELECT
    date_trunc('week', proposal_start_time) as day,
    count(DISTINCT voter) as voters,
    count(*) as votes,
    COUNT(DISTINCT PROPOSAL_ID) as proposals
    -- date_trunc('day', block_timestamp) as day,
    -- avg(amount_usd / amount)
    FROM ethereum.core.ez_snapshot
    WHERE proposal_start_time > '2019-01-01'
    --WHERE not amount = 0
    --WHERE symbol LIKE 'WETH'
    GROUP BY 1
    --ORDER BY 3 DESC
    --LIMIT 1000
    Last run: about 1 year ago
    DAY
    VOTERS
    VOTES
    PROPOSALS
    1
    2021-04-26 00:00:00.0001211821927324
    2
    2021-02-08 00:00:00.000763513402175
    3
    2021-12-27 00:00:00.0003693972355949
    4
    2023-07-10 00:00:00.00054093418259354334
    5
    2021-09-06 00:00:00.0001030217868292
    6
    2022-09-26 00:00:00.0004524263422668
    7
    2021-05-31 00:00:00.000821723751273
    8
    2022-08-01 00:00:00.0005166170678774
    9
    2022-07-25 00:00:00.00055558101374813
    10
    2020-10-12 00:00:00.00051506022100
    11
    2020-08-17 00:00:00.0001693477
    12
    2023-01-16 00:00:00.00094876232100747
    13
    2020-11-09 00:00:00.0001369179582
    14
    2022-05-30 00:00:00.0004793372772784
    15
    2022-07-11 00:00:00.0002131536653622
    16
    2020-10-26 00:00:00.00026253780123
    17
    2022-06-20 00:00:00.00048822158424664
    18
    2020-07-27 00:00:00.0001221382
    19
    2023-06-26 00:00:00.00015876348718914506
    20
    2023-10-09 00:00:00.00022268216927712402
    ...
    172
    7KB
    1s