maybeyonasnew_contracts
    Updated 8 hours ago
    -- forked from new_wallet @ https://flipsidecrypto.xyz/studio/queries/cd4c8520-3c96-447c-8f1f-577bf0127405

    with
    first_time as (
    select
    to_address,
    min(block_timestamp) as first_time
    from swell.core.fact_traces
    group by 1
    ),
    daily_new as (
    select
    date_trunc('day', first_time) as date,
    count(distinct to_address) as new_contracts,
    sum(new_contracts) over(order by date) as total_contracts
    from first_time
    group by 1
    )

    select * from daily_new
    order by 1 desc



    Last run: about 8 hours ago
    DATE
    NEW_CONTRACTS
    TOTAL_CONTRACTS
    1
    2025-04-06 00:00:00.0005624619
    2
    2025-04-05 00:00:00.00023924563
    3
    2025-04-04 00:00:00.00020324324
    4
    2025-04-03 00:00:00.00032724121
    5
    2025-04-02 00:00:00.00041223794
    6
    2025-04-01 00:00:00.00082423382
    7
    2025-03-31 00:00:00.00072322558
    8
    2025-03-30 00:00:00.00050221835
    9
    2025-03-29 00:00:00.0006621333
    10
    2025-03-28 00:00:00.0007321267
    11
    2025-03-27 00:00:00.00012721194
    12
    2025-03-26 00:00:00.00012521067
    13
    2025-03-25 00:00:00.0006520942
    14
    2025-03-24 00:00:00.0005820877
    15
    2025-03-23 00:00:00.0006120819
    16
    2025-03-22 00:00:00.0002720758
    17
    2025-03-21 00:00:00.0004920731
    18
    2025-03-20 00:00:00.0006820682
    19
    2025-03-19 00:00:00.0005920614
    20
    2025-03-18 00:00:00.0006520555
    ...
    129
    5KB
    1s