jackguyAreodrome Voting 1
    Updated 2025-01-24
    with tab1 AS (
    SELECT DISTINCT tx_hash
    FROM base.core.fact_event_logs --
    WHERE tx_hash in (
    SELECT tx_hash
    FROM base.core.fact_transactions
    WHERE to_address LIKE '0x16613524e02ad97edfef371bc883f2f5d6c480a5'
    )
    AND origin_function_signature like '0x7ac09bf7'
    )


    SELECT
    date(block_timestamp) as day,
    count(DISTINCT tx_hash) as events,
    count(DISTINCT from_address) as voters
    FROM base.core.fact_transactions
    WHERE tx_hash in (SELECT * from tab1)
    GROUP BY 1
    Last run: 2 months ago
    DAY
    EVENTS
    VOTERS
    1
    2024-04-04 00:00:00.000612552
    2
    2024-01-03 00:00:00.0001012904
    3
    2024-01-26 00:00:00.0009692
    4
    2024-12-15 00:00:00.000301273
    5
    2024-07-20 00:00:00.000289247
    6
    2023-10-01 00:00:00.000180172
    7
    2024-08-28 00:00:00.00023581734
    8
    2024-04-19 00:00:00.000327296
    9
    2023-08-31 00:00:00.000733723
    10
    2024-07-11 00:00:00.000712618
    11
    2025-01-14 00:00:00.000415352
    12
    2024-12-23 00:00:00.000405329
    13
    2023-12-01 00:00:00.0005754
    14
    2023-08-29 00:00:00.000915911
    15
    2024-10-02 00:00:00.00025771886
    16
    2024-08-14 00:00:00.00023241777
    17
    2024-09-10 00:00:00.000362277
    18
    2023-11-15 00:00:00.00012701149
    19
    2024-10-12 00:00:00.000318276
    20
    2023-12-11 00:00:00.0009082
    ...
    519
    18KB
    469s