TRADE_TYPE | TOTAL_PERP_VOLUME | |
---|---|---|
1 | short | 4307911.2423539 |
2 | long | 4252590.36223287 |
zyroq5c
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 data AS (
SELECT
'Arbitrum' AS chain,
block_timestamp,
symbol,
tx_hash,
trader,
amount_usd,
fee_amount,
trade_type
FROM arbitrum.vertex.ez_perp_trades
WHERE is_taker = 'true'
UNION
SELECT
'Blitz' AS chain,
block_timestamp,
symbol,
tx_hash,
trader,
amount_usd,
fee_amount,
trade_type
FROM blast.blitz.ez_perp_trades
WHERE is_taker = 'true'
UNION
SELECT
'Base' AS chain,
block_timestamp,
symbol,
tx_hash,
trader,
amount_usd,
Last run: 3 months ago
2
53B
5s