@scallop-io/sui-scallop-sdk 0.46.50 → 0.46.52
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 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/constants/cache.ts +1 -1
- package/src/models/scallopCache.ts +0 -1
package/dist/index.mjs
CHANGED
|
@@ -256,7 +256,7 @@ import {
|
|
|
256
256
|
var DEFAULT_CACHE_OPTIONS = {
|
|
257
257
|
defaultOptions: {
|
|
258
258
|
queries: {
|
|
259
|
-
staleTime:
|
|
259
|
+
staleTime: 1500
|
|
260
260
|
}
|
|
261
261
|
}
|
|
262
262
|
};
|
|
@@ -465,8 +465,7 @@ var ScallopCache = class {
|
|
|
465
465
|
);
|
|
466
466
|
}
|
|
467
467
|
return balances;
|
|
468
|
-
}
|
|
469
|
-
staleTime: 5e3
|
|
468
|
+
}
|
|
470
469
|
});
|
|
471
470
|
}
|
|
472
471
|
async queryGetCoinBalance(input) {
|