diff --git a/solidity/contracts/reader/MoneyMarketReader.sol b/solidity/contracts/reader/MoneyMarketReader.sol index 5b92bd8d..1e1f3f53 100644 --- a/solidity/contracts/reader/MoneyMarketReader.sol +++ b/solidity/contracts/reader/MoneyMarketReader.sol @@ -356,7 +356,7 @@ contract MoneyMarketReader is IMoneyMarketReader { marketPriceInfo.underlyingTokenPrice = _getPriceUSD(_underlyingToken); marketPriceInfo.underlyingToIbRate = _ibToken.convertToShares(1e18); - marketPriceInfo.ibTokenPrice = (marketPriceInfo.underlyingTokenPrice * marketPriceInfo.underlyingToIbRate) / 1e18; + marketPriceInfo.ibTokenPrice = _getPriceUSD(address(_ibToken)); return marketPriceInfo; }