intellidegentMonthly Transactions
Updated 2023-03-06
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
'Arbitrum' as Blockchain,
date_trunc('month',block_timestamp) as Month,
count(distinct tx_hash) as Transactions,
count(distinct to_address) as Addresses,
Transactions / Addresses as TxPerAddress
FROM arbitrum.core.fact_transactions
WHERE date_trunc('month',block_timestamp) >= '2021-01-01'
AND date_trunc('month',block_timestamp) < '2023-03-01'
GROUP BY Month
UNION
SELECT
'Avalanche' as Blockchain,
date_trunc('month',block_timestamp) as Month,
count(distinct tx_hash) as Transactions,
count(distinct to_address) as Addresses,
Transactions / Addresses as TxPerAddress
FROM avalanche.core.fact_transactions
WHERE date_trunc('month',block_timestamp) >= '2021-01-01'
AND date_trunc('month',block_timestamp) < '2023-03-01'
GROUP BY Month
UNION
SELECT
'Binance' as Blockchain,
date_trunc('month',block_timestamp) as Month,
count(distinct tx_hash) as Transactions,
count(distinct to_address) as Addresses,
Transactions / Addresses as TxPerAddress
FROM bsc.core.fact_transactions
WHERE date_trunc('month',block_timestamp) >= '2021-01-01'
AND date_trunc('month',block_timestamp) < '2023-03-01'
GROUP BY Month
UNION
SELECT
'Ethereum' as Blockchain,
date_trunc('month',block_timestamp) as Month,
Run a query to Download Data