rezarwzDaily Active User copy
    Updated 2025-02-24
    with all_data as (
    SELECT
    *,
    dense_rank() OVER (
    PARTITION BY blockchain
    ORDER BY
    date_part('epoch', date) / (30 * 24 * 60 * 60)
    ) as month_rank,
    dense_rank() OVER (
    PARTITION BY blockchain
    ORDER BY
    date_trunc('day', date)
    ) as day_rank,
    dense_rank() OVER (
    PARTITION BY blockchain
    ORDER BY
    date_part('epoch', date) / (7 * 24 * 60 * 60)
    ) as week_rank
    FROM
    (
    SELECT
    *
    FROM
    (
    SELECT
    'Blast' as blockchain,
    date_trunc('{{time_frame}}', block_Timestamp) as date,
    count(DISTINCT from_address) as Daily_Active_User,
    count(tx_hash) as "Daily # of TXs"
    FROM
    blast.core.fact_transactions
    group by
    1,
    2
    union
    all
    Last run: 2 months ago
    BLOCKCHAIN
    DATE
    DAILY_ACTIVE_USER
    Daily # of TXs
    MONTH_RANK
    DAY_RANK
    WEEK_RANK
    TIME_LABEL
    1
    Blast2024-02-01 00:00:00.000248976139051111
    2
    Blast2024-03-01 00:00:00.000462153119728292222
    3
    Blast2024-04-01 00:00:00.000444113149561453333
    4
    Blast2024-05-01 00:00:00.000595727207502414444
    5
    Blast2024-06-01 00:00:00.000875722275316305555
    6
    Blast2024-07-01 00:00:00.000552035212019106666
    7
    Arbitrum2021-05-01 00:00:00.00081461111
    8
    Arbitrum2021-06-01 00:00:00.00079475532222
    9
    Arbitrum2021-07-01 00:00:00.000911436483333
    10
    Arbitrum2021-08-01 00:00:00.000366376554444
    11
    Arbitrum2021-09-01 00:00:00.00017916818022085555
    12
    Arbitrum2021-10-01 00:00:00.0008914610197676666
    13
    Optimism2021-11-01 00:00:00.000342526363411111
    14
    Optimism2021-12-01 00:00:00.0005066311697802222
    15
    Optimism2022-01-01 00:00:00.0002825412610063333
    16
    Optimism2022-02-01 00:00:00.000273849379094444
    17
    Optimism2022-03-01 00:00:00.0003758911515945555
    18
    Optimism2022-04-01 00:00:00.0007308016829006666
    19
    Base2023-06-01 00:00:00.000246902001111
    20
    Base2023-07-01 00:00:00.00017574328222242222
    24
    1KB
    332s