freemartiancontract intracterd
Updated 2024-07-22
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
›
⌄
SELECT
block_timestamp::date AS day,
count(DISTINCT tx_receiver) AS contracts,
'Near' AS chain_name
FROM near.core.fact_transactions
WHERE block_timestamp::date >= '2024-01-01'
AND tx_receiver IN (SELECT address FROM near.core.dim_address_labels)
GROUP BY 1
UNION
SELECT
block_timestamp::date AS day,
count(DISTINCT payload_function) AS contracts,
'Aptos' AS chain_name
FROM aptos.core.fact_transactions
WHERE block_timestamp::date >= '2024-01-01'
GROUP BY 1
Auto-refreshes every 1 hour
QueryRunArchived: QueryRun has been archived