Ali3NAvalanche Projects' Pools' Stats
Updated 2024-06-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
select case when projects ilike '%aave%' then 'AAVE'
when projects ilike '%joe%' then 'Trader Joe'
when projects ilike '%gmx%' then 'GMX'
else initcap (projects) end as "Project Name",
symbol as "Pool",
initcap(il_risk) as "Impermanent Loss Risk",
median (apy) as "APY",
avg (tvl_usd) as "TVL [$]",
median (volume_usd_1d) as "24H Volume",
median (volume_usd_7d) as "7D Volume",
avg (mu) as "MU (µ)",
avg (sigma) as "SIGMA (σ)"
from external.defillama.fact_pool_yields
where chain ilike 'Avalanche'
and date = (select max(date) from external.defillama.fact_pool_yields
where chain ilike 'Avalanche')
group by 1,2,3
order by "TVL [$]" desc
Auto-refreshes every 6 hours
QueryRunArchived: QueryRun has been archived