SocioCryptoTransactions and users
Updated 2023-03-15
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
SELECT 'luna classic' as label,
date_trunc('day',p.block_timestamp) as date,
count(DISTINCT f.value) as wallets,
count(DISTINCT tx_id) as n_txns
FROM terra.transactions p,
table(flatten( parse_json(p.tx_from))) f
GROUP BY date
UNION
SELECT 'terra 2.0' as label,
date_trunc('day',block_timestamp) as date,
count(DISTINCT tx_sender) as wallets,
count(DISTINCT tx_id) as n_txns
FROM terra.core.fact_transactions
GROUP BY date
Run a query to Download Data