SYMBOL_IN | TOTAL_AMOUNT | |
---|---|---|
1 | WETH | 626976152031.11 |
2 | USDC | 377323574063.65 |
3 | USDT | 134151629330.31 |
4 | WBTC | 57924848579.14 |
5 | DAI | 47965848910.4 |
6 | FEI | 10893858283.88 |
7 | UNI | 6954787969.03 |
8 | LINK | 6672159217.93 |
9 | SHIB | 6488659844.36 |
10 | FRAX | 6193786825.85 |
somkeneIN-CLASS CODE
Updated 2024-02-15
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
SELECT
s.symbol_in,
SUM(s.amount_in_usd) total_amount
FROM ethereum.defi.ez_dex_swaps s
JOIN ethereum.core.dim_labels l ON s.contract_address=l.address
WHERE platform LIKE 'uniswap%' AND s.amount_in_usd IS NOT NULL
GROUP BY s.symbol_in
ORDER BY total_amount DESC
LIMIT 10
Last run: about 1 year ago
10
236B
13s