DIRECTION | INFLOW | |
---|---|---|
1 | Inflow | 23607360.7801427 |
2 | Outflow | 22680236.7360655 |
SocioAnalyticaSEI volume In- and Out- flows2
Updated 2025-02-02
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
-- forked from SEI volume In- and Out- flows @ https://flipsidecrypto.xyz/studio/queries/f292f299-675f-4852-940a-a47f6360b3e7
WITH tb1 AS (
SELECT
outF.dest_chain as chain,
outF.chain_total outflow,
outF.volume_chain_rank outflow_rank,
inF.chain_total inflow,
inF.incoming_chain_volume_rank inflow_rank
FROM $query('70da365c-adcd-4bcd-9a23-aa45e1caea8e') as outF LEFT OUTER JOIN $query('40fd1c3b-31ab-4443-8445-69a4799452a5') as inF ON outF.dest_chain=inF.src_chain
WHERE outflow_rank <= 12
ORDER BY outflow_rank
)
SELECT
'Inflow' as direction,
sum(inflow) as inflow
FROM tb1
UNION
SELECT
'Outflow' as direction,
sum(outflow) as outflow,
FROM tb1
Last run: 3 months ago
2
58B
2s