freemartianUntitled Query
Updated 2022-01-19
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
-- select pool_address FROM ethereum.dex_liquidity_pools
-- WHERE platform = 'sushiswap'
-- ORDER BY creation_time DESC
select to_address, SUM(amount_usd) FROM ethereum.udm_events WHERE
to_address IN (
select pool_address FROM ethereum.dex_liquidity_pools
WHERE platform = 'sushiswap'
ORDER BY creation_time DESC
LIMIT 100
) GROUP BY to_address
Run a query to Download Data