@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.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/queries/coreQuery.ts +1 -0
package/package.json
CHANGED
package/src/queries/coreQuery.ts
CHANGED
|
@@ -164,6 +164,7 @@ export const queryMarket = async (
|
|
|
164
164
|
|
|
165
165
|
for (const collateral of marketData?.collaterals ?? []) {
|
|
166
166
|
const coinType = normalizeStructTag(collateral.type.name);
|
|
167
|
+
if (coinType === NATIVE_USDC) continue;
|
|
167
168
|
const collateralCoinName =
|
|
168
169
|
query.utils.parseCoinNameFromType<SupportCollateralCoins>(coinType);
|
|
169
170
|
const coinPrice = coinPrices[collateralCoinName] ?? 0;
|