TOKEN_SYMBOL | VOLUME_OUT_DAILY | TOTAL_VOLUME_OUT | |
---|---|---|---|
1 | WETH | 37868378.466112 | 37868378.466112 |
2 | USDC | 14646582.8376572 | 14646582.8376572 |
3 | AXS | 12094680.8563359 | 12094680.8563359 |
4 | JAIHOZ | 933117.344727179 | 933117.344727179 |
5 | PIXEL | 778419.66786647 | 778419.66786647 |
6 | APRS | 409640.992641053 | 409640.992641053 |
7 | ZENT | 323198.376458167 | 323198.376458167 |
8 | YGG | 280013.265328105 | 280013.265328105 |
9 | LUAUSD | 94974.424336063 | 94974.424336063 |
10 | LINK | 26272.863000527 | 26272.863000527 |
permaryTop Tokens Bridged out
Updated 2025-04-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
24
25
26
27
28
29
30
31
›
⌄
WITH combined AS (
-- Combine all relevant data sources for bridging activities
SELECT *, TOTAL_VOLUME AS volume_adj, transaction_date AS trans_date
FROM $query('681e5f03-81f2-4610-b46a-d9bb07a57d8c') -- eth to ronin native
UNION ALL
SELECT *, TOTAL_VOLUME * -1 AS volume_adj, transaction_date AS trans_date
FROM $query('5fed494d-91be-4e73-84b4-3321e38a0b99') -- ronin to eth native
UNION ALL
SELECT *, TOTAL_VOLUME AS volume_adj, transaction_date AS trans_date
FROM $query('e640caf5-ec09-4512-9d13-e9ad0b6e8e03') -- eth to ronin ccip
UNION ALL
SELECT *, TOTAL_VOLUME AS volume_adj, transaction_date AS trans_date
FROM $query('a6bd881e-a6a5-4c4d-85da-78ca173c67e4') -- base to ronin ccip
UNION ALL
SELECT *, TOTAL_VOLUME * -1 AS volume_adj, transaction_date AS trans_date
FROM $query('a89d784f-8965-4adf-8204-93c086c029ac') -- ronin to base and eth ccip
)
SELECT
token_symbol,
SUM(COALESCE(ABS(volume_adj), 0))::FLOAT AS volume_out_daily, -- Total volume out bridged tokens (convert negative to positive for chart)
SUM(SUM(COALESCE(ABS(volume_adj), 0))) OVER (PARTITION BY token_symbol ORDER BY MIN(trans_date) ASC) ::FLOAT AS total_volume_out -- Cumulative volume out
FROM combined
WHERE volume_adj < 0 -- Focus on outbound bridged tokens (negative volume_adj)
AND trans_date >= '2025-01-01' -- Start of Q1
AND trans_date <= '2025-03-31' -- End of Q1
GROUP BY token_symbol
ORDER BY volume_out_daily DESC
LIMIT 10; -- Top 10 tokens by volume bridged out
Last run: 24 days ago
10
426B
7s