rezarwzDaily Active User
    Updated 2025-02-24
    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
    where
    block_Timestamp :: date >= '{{day_from}}'
    and block_Timestamp :: date <= '{{day_to}}'
    group by
    1,
    2
    union
    all
    SELECT
    'Base' 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
    Base.core.fact_transactions
    where
    block_Timestamp :: date >= '{{day_from}}'
    and block_Timestamp :: date <= '{{day_to}}'
    group by
    1,
    2
    union
    all
    SELECT
    'Optimism' as blockchain,
    date_trunc('{{time_frame}}', block_Timestamp) as date,
    Last run: 2 months ago
    BLOCKCHAIN
    DATE
    DAILY_ACTIVE_USER
    Daily # of TXs
    1
    Blast2024-05-01 00:00:00.00059572720750241
    2
    Base2024-05-01 00:00:00.000396392967203902
    3
    Optimism2024-05-01 00:00:00.000202331817538097
    4
    Arbitrum2024-05-01 00:00:00.000811928373646316
    5
    Optimism2021-11-01 00:00:00.00034252636341
    6
    Arbitrum2021-11-01 00:00:00.00077989782850
    7
    Optimism2022-04-01 00:00:00.000730801682900
    8
    Arbitrum2022-04-01 00:00:00.0001887672087195
    9
    Optimism2022-05-01 00:00:00.0001221922781529
    10
    Arbitrum2022-05-01 00:00:00.0002141572749735
    11
    Blast2024-11-01 00:00:00.00015682616576892
    12
    Base2024-11-01 00:00:00.00018680731221392662
    13
    Optimism2024-11-01 00:00:00.000109569628240993
    14
    Arbitrum2024-11-01 00:00:00.000366874277476157
    15
    Base2024-01-01 00:00:00.00088621910993591
    16
    Optimism2024-01-01 00:00:00.000114097312473069
    17
    Arbitrum2024-01-01 00:00:00.000237182639235724
    18
    Blast2024-04-01 00:00:00.00044411314956145
    19
    Base2024-04-01 00:00:00.000394639682932613
    20
    Optimism2024-04-01 00:00:00.000230218120751126
    ...
    116
    6KB
    327s