FROM_ASSET | TO_ASSET | TOTALVOLUMEUSD | TOTALVOLUME2 | TOTALTRANSACTIONS | TOTALTRANSACTIONS2 | ACTIVESWAPPERS | ACTIVESWAPPERS2 | |
---|---|---|---|---|---|---|---|---|
1 | BTC/BTC | THOR.RUNE | 7109160383.33967 | 7.11B | 1546335 | 1.55M | 2830 | 2.83K |
2 | THOR.RUNE | BTC/BTC | 7094519208.07403 | 7.09B | 1911655 | 1.91M | 4818 | 4.82K |
3 | BTC.BTC | THOR.RUNE | 6048828470.2824 | 6.05B | 489491 | 489.49K | 226863 | 226.86K |
4 | THOR.RUNE | BTC~BTC | 5870648969.08678 | 5.87B | 863057 | 863.06K | 82 | 82 |
datavortexTop Swap Routes
Updated 2025-05-07
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
›
⌄
SELECT
from_asset,
to_asset,
SUM(from_amount_usd) AS TotalVolumeUSD,
CASE
WHEN SUM(from_amount_usd) >= 1000000000 THEN
TO_CHAR(ROUND(SUM(from_amount_usd) / 1000000000, 2)) || 'B'
WHEN SUM(from_amount_usd) >= 1000000 THEN
TO_CHAR(ROUND(SUM(from_amount_usd) / 1000000, 2)) || 'M'
WHEN SUM(from_amount_usd) >= 1000 THEN
TO_CHAR(ROUND(SUM(from_amount_usd) / 1000, 2)) || 'K'
ELSE
TO_CHAR(SUM(from_amount_usd))
END AS TotalVolume2,
COUNT(DISTINCT tx_id) AS TotalTransactions,
CASE
WHEN COUNT(DISTINCT tx_id) >= 1000000 THEN
TO_CHAR(ROUND(COUNT(DISTINCT tx_id) / 1000000, 2)) || 'M'
WHEN COUNT(DISTINCT tx_id) >= 1000 THEN
TO_CHAR(ROUND(COUNT(DISTINCT tx_id) / 1000, 2)) || 'K'
ELSE
TO_CHAR(COUNT(DISTINCT tx_id))
END AS TotalTransactions2,
COUNT(DISTINCT from_address) AS ActiveSwappers,
CASE
WHEN COUNT(DISTINCT from_address) >= 1000000 THEN
TO_CHAR(ROUND(COUNT(DISTINCT from_address) / 1000000, 2)) || 'M'
WHEN COUNT(DISTINCT from_address) >= 1000 THEN
Last run: 17 days ago
4
313B
26s