Blockchain | Transfers | Senders | Receivers | Volume | |
---|---|---|---|---|---|
1 | Arbitrum | 564253 | 164999 | 235535 | 15803.5655429 |
2 | Avalanche | 7610952 | 1017261 | 1066558 | 1262818.75389806 |
3 | BSC | 190724 | 84668 | 68420 | 1354.21510761 |
4 | Optimism | 34409 | 24423 | 6737 | 65.02177414 |
5 | Polygon | 143346 | 88431 | 30214 | 210.85528687 |
alitaslimiTransfers Blockchains
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
count(distinct tx_hash) as transactions,
count(distinct from_address) as senders,
count(distinct to_address) as receivers,
sum(amount) as volume
from
arbitrum.core.ez_token_transfers
where
contract_address = '0x2297aebd383787a160dd0d9f71508148769342e3'
and from_address != '0x0000000000000000000000000000000000000000'
and to_address != '0x0000000000000000000000000000000000000000'
),
-------------------- Avalanche --------------------
avalanche as (
select
count(distinct tx_hash) as transactions,
count(distinct from_address) as senders,
count(distinct to_address) as receivers,
sum(amount) as volume
from
avalanche.core.ez_token_transfers
where
contract_address = '0x152b9d0fdc40c096757f570a51e494bd4b943e50'
and from_address != '0x0000000000000000000000000000000000000000'
and to_address != '0x0000000000000000000000000000000000000000'
),
-------------------- BSC --------------------
bsc as (
select
count(distinct tx_hash) as transactions,
count(distinct from_address) as senders,
count(distinct to_address) as receivers,
sum(amount) as volume
Last run: 24 days ago
5
231B
92s