Flipside TeamContracts overview trend
Updated 2024-09-12
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
-- forked from Sandesh / Contracts overview trend @ https://flipsidecrypto.xyz/Sandesh/q/zvie-qLAUndR/contracts-overview-trend
-- forked from Contracts overview @ https://flipsidecrypto.xyz/edit/queries/e2f480fe-4682-4740-b152-ee60b3b700a1
select
created_block_timestamp::date as date,
count(distinct address) as number_of_contracts_deployed,
-- sum(number_of_contracts_deployed) over(order by date asc) as total_number_of_contracts_deployed,
count(distinct creator_address) as number_of_deployers,
-- sum(number_of_deployers) over(order by date asc) as total_number_of_deployers,
from ethereum.core.dim_contracts
where 1=1
and date >= '{{Start_date}}'
and date <= '{{End_date}}'
group by date
order by date desc
-- limit 5
QueryRunArchived: QueryRun has been archived