messariflow stats: contracts (over time) weekly copy
    Updated 2025-02-24
    -- forked from adriaparcerisas / flow stats: contracts (over time) weekly @ https://flipsidecrypto.xyz/adriaparcerisas/q/53VloPXuY8mq/flow-stats-contracts-over-time-weekly


    with
    news as (
    select distinct event_contract as new_contract,
    min(trunc(block_timestamp,'day')) as debut
    from flow.core.fact_events
    group by 1
    )
    select
    trunc(x.block_timestamp,'day') as date,
    count(distinct event_contract) as active_contracts
    --,
    --count(distinct new_contract) as new_contracts,
    --sum(new_contracts) over (order by date) as unique_contracts
    from flow.core.fact_events x
    --join news n on trunc(x.block_timestamp,'week')=debut
    where
    x.tx_succeeded='true' --and x.block_timestamp<trunc(current_date,'week')
    group by 1
    order by 1 asc



    QueryRunArchived: QueryRun has been archived