GetstanUAW MOM
    Updated 2 days ago
    ---1.UAW DOD & MOM-----------------
    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'
    )
    select
    -- date(t.BLOCK_TIMESTAMP) as Date,
    date_trunc('month',t.BLOCK_TIMESTAMP) as month,

    -- month(t.BLOCK_TIMESTAMP) as month,
    count(DISTINCT(t.SENDER)) as signers
    FROM aptos.core.fact_transactions t
    where t.tx_hash in (select txn from base )
    GROUP BY 1
    ORDER by 1
    -- LIMIT 10
    ;
    Last run: 1 day ago
    MONTH
    SIGNERS
    1
    2024-01-01 00:00:00.0001
    2
    2024-03-01 00:00:00.0001
    3
    2024-04-01 00:00:00.00019204
    4
    2024-05-01 00:00:00.00056261
    5
    2024-06-01 00:00:00.00062837
    6
    2024-07-01 00:00:00.000167986
    7
    2024-08-01 00:00:00.000342440
    8
    2024-09-01 00:00:00.000312533
    9
    2024-10-01 00:00:00.000424686
    10
    2024-11-01 00:00:00.000867698
    11
    2024-12-01 00:00:00.0001424884
    12
    2025-01-01 00:00:00.0002288465
    13
    2025-02-01 00:00:00.0001948427
    14
    2025-03-01 00:00:00.0001680811
    15
    2025-04-01 00:00:00.000805752
    15
    517B
    155s