@mysten/sui 1.43.1 → 1.43.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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Mysten Labs <build@mystenlabs.com>",
4
4
  "description": "Sui TypeScript API",
5
5
  "homepage": "https://sdk.mystenlabs.com",
6
- "version": "1.43.1",
6
+ "version": "1.43.2",
7
7
  "license": "Apache-2.0",
8
8
  "sideEffects": false,
9
9
  "files": [
@@ -160,7 +160,7 @@
160
160
  "graphql": "^16.11.0",
161
161
  "poseidon-lite": "0.2.1",
162
162
  "valibot": "^0.36.0",
163
- "@mysten/bcs": "1.9.1",
163
+ "@mysten/bcs": "1.9.2",
164
164
  "@mysten/utils": "0.2.0"
165
165
  },
166
166
  "scripts": {
@@ -508,13 +508,13 @@ export class Transaction {
508
508
  this.#data.mapCommandArguments(resultIndex, (arg) => {
509
509
  if (arg.$kind === 'Result' && !this.#availableResults.has(arg.Result)) {
510
510
  throw new Error(
511
- `Result { Result: ${arg.Result} } is not available to use the current transaction`,
511
+ `Result { Result: ${arg.Result} } is not available to use in the current transaction`,
512
512
  );
513
513
  }
514
514
 
515
515
  if (arg.$kind === 'NestedResult' && !this.#availableResults.has(arg.NestedResult[0])) {
516
516
  throw new Error(
517
- `Result { NestedResult: [${arg.NestedResult[0]}, ${arg.NestedResult[1]}] } is not available to use the current transaction`,
517
+ `Result { NestedResult: [${arg.NestedResult[0]}, ${arg.NestedResult[1]}] } is not available to use in the current transaction`,
518
518
  );
519
519
  }
520
520
 
package/src/version.ts CHANGED
@@ -3,5 +3,5 @@
3
3
 
4
4
  // This file is generated by genversion.mjs. Do not edit it directly.
5
5
 
6
- export const PACKAGE_VERSION = '1.43.1';
6
+ export const PACKAGE_VERSION = '1.43.2';
7
7
  export const TARGETED_RPC_VERSION = '1.60.0';