@0xobelisk/sui-client 0.5.10 → 0.5.12

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.
@@ -267,24 +267,9 @@ export declare class SuiTxBlock {
267
267
  kind: "Input";
268
268
  value?: any;
269
269
  };
270
- object(value: string | ObjectCallArg): {
271
- index: number;
272
- kind: "Input";
273
- type?: "object" | undefined;
274
- value?: any;
275
- };
276
- objectRef(ref: SuiObjectRef): {
277
- index: number;
278
- kind: "Input";
279
- type?: "object" | undefined;
280
- value?: any;
281
- };
282
- sharedObjectRef(ref: SharedObjectRef): {
283
- index: number;
284
- kind: "Input";
285
- type?: "object" | undefined;
286
- value?: any;
287
- };
270
+ object(value: string | ObjectCallArg): TransactionObjectArgument;
271
+ objectRef(ref: SuiObjectRef): TransactionObjectArgument;
272
+ sharedObjectRef(ref: SharedObjectRef): TransactionObjectArgument;
288
273
  setSender(sender: string): void;
289
274
  setSenderIfNotSet(sender: string): void;
290
275
  setExpiration(expiration?: TransactionExpiration): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xobelisk/sui-client",
3
- "version": "0.5.10",
3
+ "version": "0.5.12",
4
4
  "description": "Tookit for interacting with move eps framework",
5
5
  "keywords": [
6
6
  "sui",
@@ -37,8 +37,8 @@
37
37
  "src"
38
38
  ],
39
39
  "dependencies": {
40
- "@mysten/bcs": "^0.8.1",
41
- "@mysten/sui.js": "^0.45.1",
40
+ "@mysten/bcs": "^0.10.1",
41
+ "@mysten/sui.js": "^0.49.1",
42
42
  "@noble/curves": "^1.2.0",
43
43
  "@noble/hashes": "^1.3.2",
44
44
  "@scure/bip39": "^1.2.1",
@@ -53,7 +53,7 @@
53
53
  "tmp": "^0.2.1"
54
54
  },
55
55
  "peerDependencies": {
56
- "@mysten/sui.js": "^0.45.1"
56
+ "@mysten/sui.js": "^0.49.1"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@commitlint/cli": "^18.0.0",