@aurigami/sdk 0.6.3 → 0.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3300,7 +3300,7 @@ var SdkRead = /*#__PURE__*/function (_BlockchainEntityRead) {
3300
3300
  amount: newBorrowLimit.toFixed(DECIMAL_PRECISION),
3301
3301
  currency: "USD"
3302
3302
  },
3303
- newBorrowUtilization: newBorrowValuation.div(newBorrowLimit).toNumber()
3303
+ newBorrowUtilization: newBorrowLimit.eq(0) ? newBorrowValuation.eq(0) ? 0 : 9999.99 : newBorrowValuation.div(newBorrowLimit).toNumber()
3304
3304
  };
3305
3305
  };
3306
3306