eriklieuclMAU
Updated 2023-02-07
9
1
2
3
4
5
6
7
8
9
›
⌄
SELECT
DATE_TRUNC('month', BLOCK_TIMESTAMP) AS mth,
COUNT(*) AS tx,
COUNT(DISTINCT FROM_ADDRESS) AS mau
FROM
bsc.core.fact_transactions
GROUP BY
1
ORDER BY mth
Run a query to Download Data