rezarwzNew Users
    Updated 2025-02-24
    SELECT
    date_trunc('{{time_frame}}', block_Timestamp) as date,
    'Blast' as blockcain,
    count(DISTINCT from_address) as "# of New Wallets"
    FROM
    blast.core.fact_transactions
    where
    (from_address, block_Timestamp) in (
    SELECT
    from_address,
    min(block_Timestamp)
    from
    blast.core.fact_transactions
    group by
    1
    )
    and
    block_Timestamp :: date >= '{{day_from}}'
    and block_Timestamp :: date <= '{{day_to}}'
    group by
    1
    union
    all
    SELECT
    date_trunc('{{time_frame}}', block_Timestamp) as date,
    'Arbitrum' as blockcain,
    count(DISTINCT from_address) as "# of New Wallets"
    FROM
    arbitrum.core.fact_transactions
    where
    (from_address, block_Timestamp) in (
    SELECT
    from_address,
    min(block_Timestamp)
    from
    arbitrum.core.fact_transactions
    Last run: 2 months ago
    DATE
    BLOCKCAIN
    # of New Wallets
    1
    2024-04-01 00:00:00.000optimism1008369
    2
    2024-07-01 00:00:00.000Blast108117
    3
    2024-03-01 00:00:00.000Blast441927
    4
    2024-02-01 00:00:00.000optimism509270
    5
    2024-03-01 00:00:00.000Arbitrum1534743
    6
    2024-07-01 00:00:00.000Arbitrum2225254
    7
    2024-08-01 00:00:00.000optimism311520
    8
    2024-06-01 00:00:00.000Arbitrum6137848
    9
    2024-08-01 00:00:00.000Base10187576
    10
    2024-04-01 00:00:00.000Blast218843
    11
    2024-06-01 00:00:00.000Base5482902
    12
    2024-01-01 00:00:00.000Arbitrum926111
    13
    2024-08-01 00:00:00.000Arbitrum1375574
    14
    2024-04-01 00:00:00.000Arbitrum2228979
    15
    2024-02-01 00:00:00.000Arbitrum845613
    16
    2024-06-01 00:00:00.000Blast412702
    17
    2024-01-01 00:00:00.000optimism396951
    18
    2024-02-01 00:00:00.000Base457116
    19
    2024-05-01 00:00:00.000Arbitrum5811437
    20
    2024-08-01 00:00:00.000Blast36191
    31
    1KB
    810s