CHAIN | VOLUME | AVG_VOLUME | MAX_VOLUME | MIN_VOLUME | MEDIAN_VOLUME | TRADERS | PREP_TRADES | |
---|---|---|---|---|---|---|---|---|
1 | Sei | 10162336014.9835 | 2187.113163111 | 580470 | 3.866062613 | 1295.485 | 123 | 4646461 |
2 | Base | 31588279.7773571 | 1892.306941674 | 201533.362672535 | 4.318176 | 923.448689738 | 72 | 16693 |
3 | Mantle | 955387943.752487 | 1656.416560478 | 309547.518112 | 4.275438788 | 982.143 | 29 | 576780 |
4 | Arbitrum | 5173635376.04196 | 1842.515234067 | 580353.906 | 3.7419 | 941.91158 | 1834 | 2807920 |
5 | Blitz | 1098043465.917 | 1764.863671956 | 350072.469493899 | 3.84 | 1059.695 | 424 | 622169 |
hess16. Total Per Chain
Updated 2025-01-21
99
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 trade as ( select block_timestamp,
'Sei' as chain,
tx_hash,
trader,
symbol,
amount_usd
from sei.vertex.ez_perp_trades
where is_taker = 'true'
UNION
select block_timestamp,
'Arbitrum' as chain,
tx_hash,
trader,
symbol,
amount_usd
from arbitrum.vertex.ez_perp_trades
where is_taker = 'true'
UNION
select block_timestamp,
'Mantle' as chain,
tx_hash,
trader,
symbol,
amount_usd
from mantle.vertex.ez_perp_trades
where is_taker = 'true'
UNION
select block_timestamp,
'Blitz' as chain,
tx_hash,
trader,
symbol,
amount_usd
from blast.blitz.ez_perp_trades
where is_taker = 'true'
UNION
Last run: 3 months ago
5
426B
8s