DATE | # of Txs | # of Active Addresses | |
---|---|---|---|
1 | 2024-02-19 00:00:00.000 | 47899 | 4 |
2 | 2024-02-26 00:00:00.000 | 2492471 | 134030 |
3 | 2024-03-04 00:00:00.000 | 2371135 | 192959 |
4 | 2024-03-11 00:00:00.000 | 1880437 | 139396 |
5 | 2024-03-18 00:00:00.000 | 2376485 | 132808 |
6 | 2024-03-25 00:00:00.000 | 3418307 | 218687 |
7 | 2024-04-01 00:00:00.000 | 3740730 | 228649 |
8 | 2024-04-08 00:00:00.000 | 3540286 | 217362 |
9 | 2024-04-15 00:00:00.000 | 3202941 | 186100 |
10 | 2024-04-22 00:00:00.000 | 3427248 | 187815 |
11 | 2024-04-29 00:00:00.000 | 4609633 | 259946 |
12 | 2024-05-06 00:00:00.000 | 4830160 | 260392 |
13 | 2024-05-13 00:00:00.000 | 4667691 | 282772 |
14 | 2024-05-20 00:00:00.000 | 4341801 | 243426 |
15 | 2024-05-27 00:00:00.000 | 4717741 | 221903 |
16 | 2024-06-03 00:00:00.000 | 5942064 | 319335 |
17 | 2024-06-10 00:00:00.000 | 6690072 | 372830 |
18 | 2024-06-17 00:00:00.000 | 7603797 | 458937 |
19 | 2024-06-24 00:00:00.000 | 5923852 | 552343 |
20 | 2024-07-01 00:00:00.000 | 4540357 | 313383 |
rezarwzweary-blush
Updated 2025-03-28
99
1
2
3
4
5
6
7
8
9
10
›
⌄
SELECT
date_trunc('week',block_timestamp) as date,
count(DISTINCT tx_hash) as "# of Txs",
count(distinct from_address) as "# of Active Addresses"
FROM
blast.core.fact_Transactions
where date_trunc('week',block_timestamp)!=date_trunc('week',current_Date)
GROUP by
1
order by 1 asc
Last run: 27 days ago
57
2KB
11s