gaonipcontracts
Updated 2023-12-16
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
-- smart contract deployment patterns
with smart_contracts as (
select
date_trunc('day', created_block_timestamp) as day,
count(distinct address) as total_contracts_deployed
from ethereum.core.dim_contracts
group by day
order by day asc
)
Run a query to Download Data