kumbayaa2024-04-10 02:48 AM
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
SELECT
dl.label AS contract_name,
SUM(ds.amount_received) AS total_usd_received
FROM
ez_dex_swaps ds
JOIN
ethereum.core.dim_labels dl ON ds.contract_id = dl.contract_id
GROUP BY
ds.contract_id, dl.label
ORDER BY
total_usd_received DESC
LIMIT 10;
Run a query to Download Data