zpokoArbitrum NFT TX Count
Updated 2023-07-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
SELECT
DATE_TRUNC('day', ft.block_timestamp) AS dt,
COUNT(
DISTINCT CASE
WHEN dl.label_type = 'nft' THEN ft.from_address
END
) AS nft_count,
COUNT(distinct tx_hash) AS nft_txs,
COUNT(distinct tx_hash) / COUNT(
DISTINCT CASE
WHEN dl.label_type = 'nft' THEN ft.from_address
END
) AS txs_address
FROM
arbitrum.core.fact_transactions ft
JOIN arbitrum.core.dim_labels dl ON ft.to_address = dl.address
WHERE
ft.block_timestamp >= '2019-01-01'
AND dl.label_type IN ('nft')
GROUP BY
DATE_TRUNC('day', ft.block_timestamp)
ORDER BY
dt
Run a query to Download Data