GetstanUAW DOD copy
    Updated 2024-12-06
    -- forked from akmit12 / UAW DOD @ https://flipsidecrypto.xyz/akmit12/q/hHMroZMTHaiw/uaw-dod

    -- aptos.core.fact_transactions---1.UAW DOD-----------------
    with base AS
    (
    select
    date(e.BLOCK_TIMESTAMP) as date,
    e.tx_hash as txn
    from aptos.core.fact_events e
    where e.ACCOUNT_ADDRESS in ('0x34ca84470e8d2907562f9a2f144c6c780282953b8b025ba220b0ecc5fc0aead9')
    and e.EVENT_TYPE = '0x1::coin::DepositEvent'
    AND date(e.BLOCK_TIMESTAMP)>=CURRENT_DATE()-20
    )
    select
    date(t.BLOCK_TIMESTAMP) as Date,
    count(DISTINCT(t.SENDER)) as signers
    FROM aptos.core.fact_transactions t
    where t.tx_hash in (select txn from base )
    AND date(t.BLOCK_TIMESTAMP)>=CURRENT_DATE()-20
    GROUP BY 1
    ORDER by 1 DESC
    ;


    Last run: 21 days ago
    DATE
    SIGNERS
    1
    2025-04-04 00:00:00.00072196
    2
    2025-04-03 00:00:00.000145498
    3
    2025-04-02 00:00:00.000142506
    4
    2025-04-01 00:00:00.000144902
    5
    2025-03-31 00:00:00.000140336
    6
    2025-03-30 00:00:00.000147428
    7
    2025-03-29 00:00:00.000152519
    8
    2025-03-28 00:00:00.000158263
    9
    2025-03-27 00:00:00.000167397
    10
    2025-03-26 00:00:00.000145964
    11
    2025-03-25 00:00:00.000140262
    12
    2025-03-24 00:00:00.000136489
    13
    2025-03-23 00:00:00.000133635
    14
    2025-03-22 00:00:00.000135654
    15
    2025-03-21 00:00:00.000141954
    16
    2025-03-20 00:00:00.000148321
    17
    2025-03-19 00:00:00.000153172
    18
    2025-03-18 00:00:00.000140609
    19
    2025-03-17 00:00:00.000127838
    20
    2025-03-16 00:00:00.000116764
    21
    735B
    28s