amdonatusprincepool-info (fee indepth)
Updated 2022-11-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with lp_top5 as (
select
pool_name,
avg(token0_balance_usd + token1_balance_usd) as tvl,
'top_pool' as type
from uniswapv3.pool_stats
where token0_balance_usd is not null and token1_balance_usd is not null
and pool_name is not null
group by pool_name
order by tvl desc
limit 100
),
lp_bottom5 as (
select
pool_name,
avg(token0_balance_usd + token1_balance_usd) as tvl,
'bottom_pool' as type
from uniswapv3.pool_stats
where token0_balance_usd is not null and token1_balance_usd is not null
and pool_name is not null
group by pool_name
order by tvl asc
limit 100
),
lps as (
select * from lp_bottom5 union
select * from lp_top5
),
swap_txns as (
select
pool_name,
pool_address,
tx_id,
sender
from uniswapv3.swaps
Run a query to Download Data