@scallop-io/sui-scallop-sdk 2.3.8 → 2.3.9
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/src/models/scallopSuiKit.ts +11 -6
- package/src/queries/borrowIncentiveQuery.ts +12 -1
- package/src/queries/coreQuery.ts +17 -2
- package/src/queries/sCoinQuery.ts +8 -1
- package/src/queries/vescaQuery.ts +23 -2
package/dist/index.d.mts
CHANGED
|
@@ -460,6 +460,7 @@ type QueryInspectTxnParams = {
|
|
|
460
460
|
args: SuiObjectArg[];
|
|
461
461
|
typeArgs?: any[];
|
|
462
462
|
txBlock?: SuiTxBlock;
|
|
463
|
+
keys?: QueryKey;
|
|
463
464
|
};
|
|
464
465
|
type ScallopSuiKitParams = {
|
|
465
466
|
suiKit?: SuiKit;
|
|
@@ -513,7 +514,7 @@ declare class ScallopSuiKit extends ScallopQueryClient {
|
|
|
513
514
|
* @param txBlock
|
|
514
515
|
* @returns Promise<DevInspectResults>
|
|
515
516
|
*/
|
|
516
|
-
queryInspectTxn({ queryTarget, args, typeArgs, txBlock, }: QueryInspectTxnParams): Promise<DevInspectResults | null>;
|
|
517
|
+
queryInspectTxn({ queryTarget, args, typeArgs, txBlock, keys, }: QueryInspectTxnParams): Promise<DevInspectResults | null>;
|
|
517
518
|
}
|
|
518
519
|
|
|
519
520
|
type ScallopQueryParams = {
|
package/dist/index.d.ts
CHANGED
|
@@ -460,6 +460,7 @@ type QueryInspectTxnParams = {
|
|
|
460
460
|
args: SuiObjectArg[];
|
|
461
461
|
typeArgs?: any[];
|
|
462
462
|
txBlock?: SuiTxBlock;
|
|
463
|
+
keys?: QueryKey;
|
|
463
464
|
};
|
|
464
465
|
type ScallopSuiKitParams = {
|
|
465
466
|
suiKit?: SuiKit;
|
|
@@ -513,7 +514,7 @@ declare class ScallopSuiKit extends ScallopQueryClient {
|
|
|
513
514
|
* @param txBlock
|
|
514
515
|
* @returns Promise<DevInspectResults>
|
|
515
516
|
*/
|
|
516
|
-
queryInspectTxn({ queryTarget, args, typeArgs, txBlock, }: QueryInspectTxnParams): Promise<DevInspectResults | null>;
|
|
517
|
+
queryInspectTxn({ queryTarget, args, typeArgs, txBlock, keys, }: QueryInspectTxnParams): Promise<DevInspectResults | null>;
|
|
517
518
|
}
|
|
518
519
|
|
|
519
520
|
type ScallopQueryParams = {
|