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
QueryRunArchived: QueryRun has been archived