KARTODUsers and txs on different blockchains
Updated 2022-09-25
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
26
27
28
29
30
31
32
33
34
35
36
›
⌄
SELECT
DATE(BLOCK_TIMESTAMP) AS "Date",
'Optimism' AS "Block",
COUNT(DISTINCT TX_HASH) AS "Transactions",
COUNT(DISTINCT FROM_ADDRESS) AS "Users"
FROM optimism.core.fact_transactions
WHERE BLOCK_TIMESTAMP > '2022-06-10'
GROUP BY 1
UNION ALL
SELECT
DATE(BLOCK_TIMESTAMP) AS "Date",
'Arbitrum' AS "Block",
COUNT(DISTINCT TX_HASH) AS "Transactions",
COUNT(DISTINCT FROM_ADDRESS) AS "Users"
FROM arbitrum.core.fact_transactions
WHERE BLOCK_TIMESTAMP > '2022-06-10'
GROUP BY 1
UNION ALL
SELECT
DATE(BLOCK_TIMESTAMP) AS "Date",
'Avalanche' AS "Block",
COUNT(DISTINCT TX_HASH) AS "Transactions",
COUNT(DISTINCT FROM_ADDRESS) AS "Users"
FROM avalanche.core.fact_transactions
WHERE BLOCK_TIMESTAMP > '2022-06-10'
GROUP BY 1
UNION ALL
SELECT
DATE(BLOCK_TIMESTAMP) AS "Date",
'Ethereum' AS "Block",
Run a query to Download Data