tkvresearchdisturbing-fuchsia
    Updated 2024-12-27
    select datetime,
    count(distinct tx_hash) as tx_cnt,
    count(distinct address) as user_cnt
    from
    (select date_trunc('quarter',block_timestamp) as datetime,
    tx_hash,
    from_address as address
    from mantle.core.fact_transactions
    union all
    select date_trunc('quarter',block_timestamp) as datetime,
    tx_hash,
    to_address as address
    from mantle.core.fact_transactions)
    where datetime >= '2024-01-01'
    group by 1
    Last run: 3 months ago
    DATETIME
    TX_CNT
    USER_CNT
    1
    2024-10-01 00:00:00.000352396351263896
    2
    2024-07-01 00:00:00.000456608232463210
    3
    2024-04-01 00:00:00.000371545601916757
    4
    2024-01-01 00:00:00.00029327283715309
    4
    180B
    15s