Eman-RazNumber of New Contracts Over Time
    Updated 2025-02-04
    with tab1 as (select contract_address, min(block_timestamp::date) as first_tx_date
    from aurora.core.fact_logs
    where tx_status='SUCCESS'
    group by 1)

    select date_trunc('{{Time_Frame}}',first_tx_date) as "Date", count(distinct contract_address) as "New Contracts",
    sum("New Contracts") over (order by "Date") as "Total New Contracts"
    from tab1
    where first_tx_date::date>='{{Start_Date}}' and first_tx_date::date<='{{End_Date}}'
    group by 1
    order by 1
    Last run: 3 months ago
    Date
    New Contracts
    Total New Contracts
    1
    2024-01-01 00:00:00.00031413141
    2
    2024-02-01 00:00:00.00021065247
    3
    2024-03-01 00:00:00.00018667113
    4
    2024-04-01 00:00:00.00010798192
    5
    2024-05-01 00:00:00.0008869078
    6
    2024-06-01 00:00:00.0008779955
    7
    2024-07-01 00:00:00.00088010835
    8
    2024-08-01 00:00:00.00095111786
    9
    2024-09-01 00:00:00.000100412790
    10
    2024-10-01 00:00:00.000148914279
    11
    2024-11-01 00:00:00.000150815787
    12
    2024-12-01 00:00:00.00079916586
    13
    2025-01-01 00:00:00.00081617402
    14
    2025-02-01 00:00:00.0009317495
    14
    533B
    3s