datavortexsporting-teal
Updated 2024-11-06
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
SELECT
affiliate_address,
SUM(from_amount_usd) AS TotalVolumeUSD,
COUNT(DISTINCT tx_id) AS TotalTransactions,
COUNT(DISTINCT from_address) AS ActiveSwappers
FROM
thorchain.defi.fact_swaps
WHERE
affiliate_address IS NOT NULL
GROUP BY
affiliate_address
ORDER BY
TotalVolumeUSD DESC
LIMIT
5;
QueryRunArchived: QueryRun has been archived