@scallop-io/sui-scallop-sdk 0.46.66 → 0.46.67

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.
package/dist/index.mjs CHANGED
@@ -2321,6 +2321,8 @@ var queryMarket = async (query, indexer = false) => {
2321
2321
  }
2322
2322
  for (const collateral of marketData?.collaterals ?? []) {
2323
2323
  const coinType = normalizeStructTag3(collateral.type.name);
2324
+ if (coinType === NATIVE_USDC)
2325
+ continue;
2324
2326
  const collateralCoinName = query.utils.parseCoinNameFromType(coinType);
2325
2327
  const coinPrice = coinPrices[collateralCoinName] ?? 0;
2326
2328
  if (!SUPPORT_COLLATERALS.includes(collateralCoinName)) {