Date | Blockchain | Transactions | Cumulative TXs | |
---|---|---|---|---|
1 | 2025-02-18 00:00:00.000 | Arbitrum | 147 | 1867252 |
2 | 2025-02-18 00:00:00.000 | Avalanche | 12388 | 9880516 |
3 | 2025-02-18 00:00:00.000 | BSC | 41 | 1484903 |
4 | 2025-02-18 00:00:00.000 | Optimism | 33 | 509410 |
5 | 2025-02-18 00:00:00.000 | Polygon | 131 | 1720028 |
6 | 2025-02-17 00:00:00.000 | Arbitrum | 185 | 1867105 |
7 | 2025-02-17 00:00:00.000 | Avalanche | 10831 | 9868128 |
8 | 2025-02-17 00:00:00.000 | BSC | 298 | 1484862 |
9 | 2025-02-17 00:00:00.000 | Optimism | 37 | 509377 |
10 | 2025-02-17 00:00:00.000 | Polygon | 489 | 1719897 |
11 | 2025-02-16 00:00:00.000 | Arbitrum | 106 | 1866920 |
12 | 2025-02-16 00:00:00.000 | Avalanche | 10372 | 9857297 |
13 | 2025-02-16 00:00:00.000 | BSC | 49 | 1484564 |
14 | 2025-02-16 00:00:00.000 | Optimism | 41 | 509340 |
15 | 2025-02-16 00:00:00.000 | Polygon | 67 | 1719408 |
16 | 2025-02-15 00:00:00.000 | Arbitrum | 115 | 1866814 |
17 | 2025-02-15 00:00:00.000 | Avalanche | 8411 | 9846925 |
18 | 2025-02-15 00:00:00.000 | BSC | 33 | 1484515 |
19 | 2025-02-15 00:00:00.000 | Optimism | 43 | 509299 |
20 | 2025-02-15 00:00:00.000 | Polygon | 91 | 1719341 |
alitaslimiTransactions Daily
Updated 2025-02-19
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with
-------------------- Arbitrum --------------------
arbitrum as (
select
block_timestamp::date as date,
count(distinct tx_hash) as transactions,
sum(transactions) over (order by date) as transactions_cumulative
from
arbitrum.core.fact_event_logs
where
tx_status = 'SUCCESS'
and block_timestamp::date < current_date
and contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
group by
date
),
-------------------- Avalanche --------------------
avalanche as (
select
block_timestamp::date as date,
count(distinct tx_hash) as transactions,
sum(transactions) over (order by date) as transactions_cumulative
from
avalanche.core.fact_event_logs
where
tx_status = 'SUCCESS'
and block_timestamp::date < current_date
and contract_address = '0x152b9d0fdc40c096757f570a51e494bd4b943e50'
group by
date
),
-------------------- BSC --------------------
bsc as (
select
block_timestamp::date as date,
count(distinct tx_hash) as transactions,
Last run: 25 days ago
...
3900
190KB
588s