Afonso_DiazOvertime
    Updated 3 days ago
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    origin_from_address as user,
    contract_address
    from
    mezo.testnet.fact_event_logs
    where
    tx_succeeded
    ),

    new_contracts as (
    select
    date_trunc('day', min_date) as date,
    count(distinct contract_address) as new_contract
    from (
    select
    contract_address,
    min(block_timestamp) as min_date
    from
    main
    group by 1
    )
    group by 1
    ),

    overtime as (
    select
    date_trunc('day', block_timestamp) as date,
    count(distinct tx_hash) as transactions,
    count(distinct contract_address) as contracts
    from
    main
    Last run: 3 days ago
    DATE
    TRANSACTIONS
    CONTRACTS
    NEW_CONTRACTS
    OLD_CONTRACTS
    1
    2025-03-29 00:00:00.00063026260
    2
    2025-03-30 00:00:00.000128847646610
    3
    2025-03-31 00:00:00.000309331617
    4
    2025-04-01 00:00:00.00049712410420
    5
    2025-04-02 00:00:00.00087619516035
    6
    2025-04-03 00:00:00.000120413710532
    7
    2025-04-04 00:00:00.000196620015446
    8
    2025-04-05 00:00:00.000219318615135
    9
    2025-04-06 00:00:00.000221432227646
    10
    2025-04-07 00:00:00.0002128223113110
    11
    2025-04-08 00:00:00.000937929619997
    12
    2025-04-09 00:00:00.00010488258135123
    13
    2025-04-10 00:00:00.000883621511996
    14
    2025-04-11 00:00:00.00081761618972
    15
    2025-04-12 00:00:00.00096351377859
    16
    2025-04-13 00:00:00.0007097236135101
    17
    2025-04-14 00:00:00.000933616810761
    18
    2025-04-15 00:00:00.0001007520093107
    19
    2025-04-16 00:00:00.00011666265163102
    20
    2025-04-17 00:00:00.000102791114665
    34
    1KB
    2s