@scallop-io/sui-scallop-sdk 0.47.0-alpha.6 → 0.47.1

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 CHANGED
@@ -2449,8 +2449,8 @@ var queryMarket = async (query, indexer = false) => {
2449
2449
  }
2450
2450
  return {
2451
2451
  pools,
2452
- collaterals,
2453
- data: marketData
2452
+ collaterals
2453
+ // data: marketData,
2454
2454
  };
2455
2455
  };
2456
2456
  var getMarketPools = async (query, poolCoinNames = [...SUPPORT_POOLS], indexer = false) => {
@@ -3234,6 +3234,17 @@ var getStakeAccounts = async ({
3234
3234
  points,
3235
3235
  totalPoints
3236
3236
  });
3237
+ } else if ((0, import_utils5.normalizeStructTag)(type) === stakeMarketCoinTypes.susdc) {
3238
+ stakeAccounts.susdc.push({
3239
+ id,
3240
+ type: (0, import_utils5.normalizeStructTag)(type),
3241
+ stakePoolId,
3242
+ stakeType: (0, import_utils5.normalizeStructTag)(stakeType),
3243
+ staked,
3244
+ index,
3245
+ points,
3246
+ totalPoints
3247
+ });
3237
3248
  }
3238
3249
  }
3239
3250
  }