kiwiengoEthereum vs. Bitcoin copy
Updated 2024-12-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
›
⌄
-- forked from Yazdani / Ethereum vs. Bitcoin @ https://flipsidecrypto.xyz/Yazdani/q/wG0F3qp2YBMA/ethereum-vs.-bitcoin
WITH eth_transactions AS (
SELECT
DATE_TRUNC('month', block_timestamp) AS month,
COUNT(DISTINCT tx_hash) AS transactions,
'Ethereum' AS blockchain
FROM ethereum.core.fact_transactions
WHERE block_timestamp >= '2024-01-01'
AND block_timestamp < '2025-01-01'
GROUP BY month
),
btc_transactions AS (
SELECT
DATE_TRUNC('month', block_timestamp) AS month,
COUNT(DISTINCT tx_hash) AS transactions,
'Bitcoin' AS blockchain
FROM bitcoin.core.fact_transactions
WHERE block_timestamp >= '2024-01-01'
AND block_timestamp < '2025-01-01'
GROUP BY month
)
SELECT month, transactions, blockchain
FROM eth_transactions
UNION ALL
SELECT month, transactions, blockchain
FROM btc_transactions
ORDER BY month;
QueryRunArchived: QueryRun has been archived