TheLaughingManContracts base
Updated 2022-08-09
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
with base as (
SELECT tx_receiver as contract, a.block_timestamp, tx
from near.core.fact_actions_events a
LEFT JOIN near.core.fact_transactions t ON t.tx_hash = a.tx_hash
where action_name = 'DeployContract'
),
refine as(
SELECT
COUNT(DISTINCT contract) as totals,
COUNT(contract) as total_deployments
from base
)
SELECT * from refine
Run a query to Download Data