No Data to Display
AnalyticSages2024-02-16 08:21 PM
Updated 2024-02-16
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
SELECT -- * means "all"
s.block_timestamp,
s.tx_hash,
s.origin_to_address, --(Receivers and Deposit)
l.address,
s.amount_in_usd,
s.platform ,
s.symbol_in
FROM ethereum.defi.ez_dex_swaps s
JOIN ethereum.core.dim_labels l
ON l.address = s.contract_address
WHERE s.platform = 'uniswap' AND s.amount_in_usd IS NOT NULL
ORDER BY 5 DESC
LIMIT 10
Last run: about 1 year ago
0
2B
5s