NEW_CONTRACTS | |
---|---|
1 | 146617 |
datavortexDeployed contracts
Updated 2025-02-22
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
WITH first_active AS (
SELECT
contract_address,
MIN(block_timestamp) AS first_seen
FROM monad.testnet.fact_event_logs
WHERE contract_address IS NOT NULL
AND tx_succeeded = TRUE
GROUP BY contract_address
)
SELECT
COUNT(DISTINCT contract_address) AS new_contracts
FROM first_active
WHERE first_seen >= '2025-02-19';
Last run: 2 months ago
1
10B
6s