rezarwzTotal Wallets & Cumulative Trend
    Updated 5 days 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: 5 days agoAuto-refreshes every 24 hours
    DATE
    # of New Wallets
    Total Wallets
    1
    2024-05-01 00:00:00.0003281411013808
    2
    2025-04-01 00:00:00.0004601858612
    3
    2024-09-01 00:00:00.000572701633428
    4
    2025-02-01 00:00:00.000124191793488
    5
    2025-01-01 00:00:00.000330361781069
    6
    2024-04-01 00:00:00.000218843685667
    7
    2024-08-01 00:00:00.000415311576158
    8
    2024-11-01 00:00:00.000263191705552
    9
    2024-02-01 00:00:00.0002489724897
    10
    2024-07-01 00:00:00.0001081171534627
    11
    2024-10-01 00:00:00.000458051679233
    12
    2024-12-01 00:00:00.000424811748033
    13
    2024-06-01 00:00:00.0004127021426510
    14
    2024-03-01 00:00:00.000441927466824
    15
    2025-03-01 00:00:00.000646641858152
    15
    630B
    89s