CarlOwOs(2) Contracts deployed
Updated 2022-08-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
⌄
WITH contracts AS (
SELECT block_timestamp::DATE AS date
, COUNT(*) AS "Contracts Deployed"
FROM near.core.fact_actions_events
WHERE action_name = 'DeployContract'
GROUP BY 1
)
SELECT *
FROM contracts
-- network view of contract creators
/* Each NEAR account can only hold one smart contract.
However, you can create "subaccounts" with a "master account"
for apps with multiple contracts. Account naming follows the internet
domains model. So for example, the account user-A-account can create
subaccounts contract1.user-A-account and contract2.user-A-account. */
Run a query to Download Data