rezarwzTotal Wallets & Cumulative Trend
    Updated 12 hours ago
    SELECT
    date_trunc('{{interval}}', block_Timestamp) as date,
    count(DISTINCT from_address) as "# of New Wallets",
    sum("# of New Wallets") over(
    order by
    date asc
    ) as "Total 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
    )
    group by
    1
    Last run: about 12 hours agoAuto-refreshes every 24 hours
    DATE
    # of New Wallets
    Total Wallets
    1
    2024-04-01 00:00:00.000218843685667
    2
    2025-01-01 00:00:00.000330361781069
    3
    2025-02-01 00:00:00.000124191793488
    4
    2024-09-01 00:00:00.000572701633428
    5
    2024-08-01 00:00:00.000415311576158
    6
    2024-11-01 00:00:00.000263191705552
    7
    2024-05-01 00:00:00.0003281411013808
    8
    2025-04-01 00:00:00.0004601858612
    9
    2024-06-01 00:00:00.0004127021426510
    10
    2024-02-01 00:00:00.0002489724897
    11
    2025-03-01 00:00:00.000646641858152
    12
    2024-07-01 00:00:00.0001081171534627
    13
    2024-12-01 00:00:00.000424811748033
    14
    2024-10-01 00:00:00.000458051679233
    15
    2024-03-01 00:00:00.000441927466824
    15
    630B
    172s