i_danAPTOS: Tx & Users
Updated 2024-09-27
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(DISTINCT sender) AS users
FROM aptos.core.fact_transactions
WHERE 1=1
AND block_timestamp >= '2022-01-01'
GROUP BY 1
ORDER BY 1 DESC
QueryRunArchived: QueryRun has been archived