@0xobelisk/sui-client 1.1.12 → 1.2.0-pre.2
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.
|
@@ -47,7 +47,7 @@ export declare class SuiTx {
|
|
|
47
47
|
resultIndex: number;
|
|
48
48
|
})[];
|
|
49
49
|
kind: "MoveCall";
|
|
50
|
-
target:
|
|
50
|
+
target: `${string}::${string}::${string}`;
|
|
51
51
|
} | {
|
|
52
52
|
address: {
|
|
53
53
|
kind: "Input";
|
|
@@ -313,7 +313,7 @@ export declare class SuiTx {
|
|
|
313
313
|
getDigest(params?: {
|
|
314
314
|
client?: SuiClient;
|
|
315
315
|
}): Promise<string>;
|
|
316
|
-
add(...args: Parameters<typeof this.tx.add>):
|
|
316
|
+
add(...args: Parameters<typeof this.tx.add>): import("@mysten/sui/transactions").TransactionResult;
|
|
317
317
|
publish({ modules, dependencies, }: {
|
|
318
318
|
modules: number[][] | string[];
|
|
319
319
|
dependencies: string[];
|