datavortexTotals
Updated 2024-12-06
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
SELECT
COUNT(DISTINCT signer_id) AS "deployers",
COUNT(DISTINCT tx_hash) AS "total contracts deployed",
COUNT(CASE WHEN receipt_succeeded = TRUE THEN 1 END) AS "successful deploys",
COUNT(CASE WHEN receipt_succeeded = FALSE THEN 1 END) AS "failed deploys",
(COUNT(CASE WHEN receipt_succeeded = TRUE THEN 1 END) * 100.0) /
NULLIF(COUNT(DISTINCT tx_hash), 0) AS "deployment success rate"
FROM
near.core.fact_actions_events
WHERE
action_name = 'DeployContract'
--AND signer_id NOT IN ('lockup.near', 'deposit.aurora', 'near');
QueryRunArchived: QueryRun has been archived