PROJECTS | AVG_APY | RANKING | |
---|---|---|---|
1 | indigo | 17 | 1 |
2 | umami-finance | 11 | 2 |
3 | ribbon | 8.90484 | 3 |
4 | strike | 5.13852 | 4 |
5 | kiloex | 4.385 | 5 |
6 | sturdy-v2 | 2.99528 | 6 |
7 | pendle | 2.929271786 | 7 |
8 | crosscurve-(by-eywa) | 2.90072 | 8 |
9 | folks-finance-xchain | 2.87267 | 9 |
10 | beefy | 2.69943 | 10 |
tkvresearchclean-apricot
Updated 2025-04-08
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
›
⌄
select *
from
(select projects,
avg_apy,
rank() over (order by avg_apy desc) as ranking
from
(select projects,
avg(apy) as avg_apy
from
(select
--distinct symbol,
PROJECTS,
tvl_usd,
apy
from external.defillama.fact_pool_yields
where --projects = 'pendle'
--and
symbol not like '%-%'
and
symbol not like '%+%'
and
symbol like '%BTC%'
and
symbol != 'GMUSDC(WBTC)'
and symbol != 'BTCUSD'
and projects not in ('dolomite','across','wing-finance','thorchain','stream-finance','yearn-finance')
and date = current_date() - 1
)
where apy < 100 and TVL_USD > 1000000
group by 1
order by 2 desc ))
where ranking between 1 and 10
Last run: 2 months ago
10
241B
2s