No Data to Display
omer93Yei Finance: Supply Stats
Updated 2025-03-27
999
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
prices as (
SELECT
case when symbol = 'USDC' then 'aYeiUSDC'
when symbol = 'USDT' then 'aYeiUSDT'
when symbol in ('WETH') then 'aYeiWETH'
when symbol in ('ETH') then 'aYeifrxETH'
when symbol in ('SFRXETH.PICA') then 'aYeisfrxETH'
when symbol = 'SFRAX.PICA' then 'aYeisFRAX'
when symbol = 'BUSD' then 'aYeiFRAX'
when symbol = 'SEI' then 'aYeiISEI'
end as asset,
avg(price) as price
from osmosis.price.ez_prices where symbol in ('USDC','USDT', 'BUSD','SEI', 'WSEI', 'ETH','WETH','FRAXETH', 'SFRXETH.PICA','SFRAX.PICA')
and recorded_hour>=current_date
group by 1
UNION ALL
SELECT
CASE
WHEN symbol = 'SEI' THEN 'aYeiWSEI'
END AS asset,
AVG(price) AS price
FROM osmosis.price.ez_prices
WHERE symbol = 'SEI'
AND recorded_hour >= current_date
GROUP BY 1
--select distinct symbol from osmosis.price.ez_prices order by 1
),
deposits as (
select
symbol as asset
,
count(DISTINCT tx_hash) as deposits
Last run: about 1 month ago
0
2B
27s