messariflow stats: contracts (over time) weekly copy
Updated 2025-02-24
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
›
⌄
-- 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