File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,7 +45,8 @@ function StatusRow({
4545 ) ;
4646}
4747
48- /** Live on-chain yields shown as the rider's "status" (ETH via Lido, USDC via Morpho). */
48+ /** Live yields shown as the rider's "status" — the actual opportunities:
49+ * USDC via Morpho, stETH + USDC via Morpheus (MOR). */
4950export function YieldStatus ( ) {
5051 const t = useTranslations ( "stake" ) ;
5152 const { data, isLoading } = useQuery ( {
@@ -67,14 +68,6 @@ export function YieldStatus() {
6768 </ span >
6869 </ div >
6970 < div className = "space-y-2" >
70- < StatusRow
71- dot = "bg-sky-400"
72- asset = "ETH"
73- source = { data ?. eth ?. source }
74- apy = { data ?. eth ?. apy }
75- suffix = "APR"
76- loading = { isLoading }
77- />
7871 < StatusRow
7972 dot = "bg-emerald-400"
8073 asset = "USDC"
@@ -83,6 +76,22 @@ export function YieldStatus() {
8376 suffix = "APY"
8477 loading = { isLoading }
8578 />
79+ < StatusRow
80+ dot = "bg-violet-400"
81+ asset = "stETH"
82+ source = { data ?. mor ?. steth ?. source }
83+ apy = { data ?. mor ?. steth ?. apy }
84+ suffix = "APR"
85+ loading = { isLoading }
86+ />
87+ < StatusRow
88+ dot = "bg-violet-400"
89+ asset = "USDC"
90+ source = { data ?. mor ?. usdc ?. source }
91+ apy = { data ?. mor ?. usdc ?. apy }
92+ suffix = "APR"
93+ loading = { isLoading }
94+ />
8695 </ div >
8796 </ div >
8897 ) ;
You can’t perform that action at this time.
0 commit comments