i_danTotal Txs & Users
Updated 2024-08-20
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
SELECT
date_trunc('week', block_timestamp) AS week
, COUNT(DISTINCT tx_hash) AS transactions
, SUM(transactions) OVER (ORDER BY week) AS total_transactions
, COUNT(tx_hash) AS tx_all
, SUM(tx_all) OVER (ORDER BY week) AS total_tx_all
, COUNT(DISTINCT from_address) AS users
FROM base.core.fact_transactions
GROUP BY 1
ORDER BY 1 DESC
QueryRunArchived: QueryRun has been archived