datavortexTop Addresses
Updated 2024-10-18
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
SELECT
origin_from_address AS top_address,
SUM(amount_in_usd) AS total_volume_usd
FROM
polygon.defi.ez_dex_swaps
WHERE
platform = 'quickswap-v3'
AND block_timestamp >= DATEADD(MONTH, -3, CURRENT_DATE)
AND amount_in_usd IS NOT NULL
GROUP BY
origin_from_address
ORDER BY
total_volume_usd DESC
LIMIT 10;
QueryRunArchived: QueryRun has been archived