@scallop-io/sui-scallop-sdk 2.1.5 → 2.1.6
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.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/builders/vescaBuilder.ts +0 -7
- package/src/models/scallopQuery.ts +2 -2
- package/src/queries/coreQuery.ts +9 -1
package/dist/index.d.mts
CHANGED
|
@@ -910,7 +910,7 @@ declare class ScallopQuery implements ScallopQueryInterface {
|
|
|
910
910
|
/**
|
|
911
911
|
* Get list of isolated assets
|
|
912
912
|
*/
|
|
913
|
-
getIsolatedAssets(): Promise<string[]>;
|
|
913
|
+
getIsolatedAssets(useOnChainQuery?: boolean): Promise<string[]>;
|
|
914
914
|
/**
|
|
915
915
|
* Check if asset is an isolated asset
|
|
916
916
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -910,7 +910,7 @@ declare class ScallopQuery implements ScallopQueryInterface {
|
|
|
910
910
|
/**
|
|
911
911
|
* Get list of isolated assets
|
|
912
912
|
*/
|
|
913
|
-
getIsolatedAssets(): Promise<string[]>;
|
|
913
|
+
getIsolatedAssets(useOnChainQuery?: boolean): Promise<string[]>;
|
|
914
914
|
/**
|
|
915
915
|
* Check if asset is an isolated asset
|
|
916
916
|
*/
|