Date | Blockchain | Transactions | Protocols | Users | |
---|---|---|---|---|---|
1 | 2025-03-03 00:00:00.000 | Arbitrum | 75 | 4 | 63 |
2 | 2025-03-03 00:00:00.000 | Avalanche | 3227 | 28 | 643 |
3 | 2025-03-03 00:00:00.000 | BSC | 217 | 3 | 116 |
4 | 2025-03-03 00:00:00.000 | Optimism | 16 | 2 | 4 |
5 | 2025-03-03 00:00:00.000 | Polygon | 45 | 2 | 44 |
6 | 2025-03-02 00:00:00.000 | Arbitrum | 70 | 4 | 55 |
7 | 2025-03-02 00:00:00.000 | Avalanche | 2803 | 32 | 571 |
8 | 2025-03-02 00:00:00.000 | BSC | 23 | 3 | 19 |
9 | 2025-03-02 00:00:00.000 | Optimism | 4 | 2 | 3 |
10 | 2025-03-02 00:00:00.000 | Polygon | 26 | 1 | 25 |
11 | 2025-03-01 00:00:00.000 | Arbitrum | 72 | 4 | 59 |
12 | 2025-03-01 00:00:00.000 | Avalanche | 2294 | 27 | 535 |
13 | 2025-03-01 00:00:00.000 | BSC | 25 | 2 | 21 |
14 | 2025-03-01 00:00:00.000 | Optimism | 9 | 3 | 5 |
15 | 2025-03-01 00:00:00.000 | Polygon | 50 | 1 | 48 |
16 | 2025-02-28 00:00:00.000 | Arbitrum | 60 | 3 | 51 |
17 | 2025-02-28 00:00:00.000 | Avalanche | 3966 | 30 | 829 |
18 | 2025-02-28 00:00:00.000 | BSC | 41 | 2 | 31 |
19 | 2025-02-28 00:00:00.000 | Optimism | 16 | 3 | 3 |
20 | 2025-02-28 00:00:00.000 | Polygon | 34 | 1 | 33 |
alitaslimiProtocols Daily (30D)
Updated 2025-03-04
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,
origin_from_address,
origin_to_address,
tx_hash
from
arbitrum.core.ez_decoded_event_logs logs
join arbitrum.core.dim_labels labels on logs.origin_to_address = labels.address
where
tx_status = 'SUCCESS'
and block_timestamp::date between (current_date - 31) and (current_date - 1)
and contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
),
-------------------- Avalanche --------------------
avalanche as (
select
block_timestamp,
origin_from_address,
origin_to_address,
tx_hash
from
avalanche.core.ez_decoded_event_logs logs
join avalanche.core.dim_labels labels on logs.origin_to_address = labels.address
where
tx_status = 'SUCCESS'
and block_timestamp::date between (current_date - 31) and (current_date - 1)
and contract_address = '0x152b9d0fdc40c096757f570a51e494bd4b943e50'
),
-------------------- BSC --------------------
bsc as (
select
block_timestamp,
origin_from_address,
Last run: 12 days agoAuto-refreshes every 12 hours
...
155
7KB
325s