Skip to content

Commit

Permalink
fix rates
Browse files Browse the repository at this point in the history
  • Loading branch information
abrzezinski94 committed Aug 17, 2024
1 parent 896e0b3 commit d5a33c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hooks/useStakeRates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const fetchRates = async () => {
rateData.dualsol = monthlyLstPriceChanges['dualsol'] ?? 0
rateData.mangosol = monthlyLstPriceChanges['mangosol'] ?? 0
rateData.compasssol = monthlyLstPriceChanges['compasssol'] ?? 0
rateData.stepsol = monthlyLstPriceChanges['stepsol'] ?? 0
rateData.stepsol = 0.0672 ?? 0
return rateData
} catch (e) {
return {}
Expand Down
2 changes: 1 addition & 1 deletion hooks/useStakeableTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export default function useStakeableTokens() {
const estNetApy = Math.max(
financialMetrics.APY,
financialMetricsAt1x.APY,
7,
0,
)
stakeableTokens.push({ token, financialMetrics, estNetApy })
}
Expand Down

0 comments on commit d5a33c4

Please sign in to comment.