DATE | TX_COUNT | ADDRESS_COUNT | CUMU_TX | CUMU_ADDRESS | |
---|---|---|---|---|---|
1 | 2024-01-06 00:00:00.000 | 330429 | 63156 | 65415313 | 11294143 |
2 | 2023-07-24 00:00:00.000 | 61121 | 4408 | 751656 | 80317 |
3 | 2023-07-15 00:00:00.000 | 77051 | 17660 | 182131 | 24542 |
4 | 2023-09-23 00:00:00.000 | 494874 | 70531 | 28306742 | 4492536 |
5 | 2023-09-21 00:00:00.000 | 470408 | 62708 | 27214472 | 4354461 |
6 | 2023-08-25 00:00:00.000 | 556952 | 98096 | 14485869 | 2468205 |
7 | 2023-11-20 00:00:00.000 | 295808 | 51300 | 51468140 | 8597720 |
8 | 2024-01-15 00:00:00.000 | 315417 | 70867 | 68296212 | 11865595 |
9 | 2023-12-02 00:00:00.000 | 297932 | 79629 | 54831714 | 9272066 |
10 | 2023-12-05 00:00:00.000 | 249980 | 48515 | 55599422 | 9441061 |
11 | 2023-11-10 00:00:00.000 | 220888 | 45703 | 48718184 | 8066065 |
12 | 2023-11-24 00:00:00.000 | 284204 | 53671 | 52635566 | 8813003 |
13 | 2023-12-22 00:00:00.000 | 335268 | 62238 | 60161453 | 10309573 |
14 | 2023-11-28 00:00:00.000 | 247171 | 48272 | 53784853 | 9037146 |
15 | 2024-01-19 00:00:00.000 | 311347 | 73098 | 69459116 | 12127584 |
16 | 2023-09-15 00:00:00.000 | 652457 | 69435 | 23133376 | 3946259 |
17 | 2023-10-15 00:00:00.000 | 460801 | 133948 | 40017279 | 6139486 |
18 | 2023-08-16 00:00:00.000 | 435377 | 75547 | 8983000 | 1511143 |
19 | 2023-12-04 00:00:00.000 | 238232 | 53375 | 55349442 | 9392546 |
20 | 2023-12-30 00:00:00.000 | 388986 | 69439 | 62931537 | 10837943 |
h4wkBase daily TX Count 2
Updated 2024-01-29
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
-- forked from Base daily TX Count by Event @ https://flipsidecrypto.xyz/edit/queries/ad4ce380-463d-4971-be3d-8c78821cff83
select block_timestamp::date as date,
count(distinct tx_hash) as tx_count,
count(distinct from_address) as address_count,
sum(tx_count) over (order by date) as cumu_tx,
sum(address_count) over (order by date) as cumu_address
from base.core.fact_transactions
where date >= '2023-07-13' and date < CURRENT_DATE
and status = 'SUCCESS'
group by 1
Last run: over 1 year agoAuto-refreshes every 3 hours
...
200
11KB
12s