@mysten/sui 1.30.4 → 1.30.5

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(Work in Progress)",
5
5
  "homepage": "https://sdk.mystenlabs.com",
6
- "version": "1.30.4",
6
+ "version": "1.30.5",
7
7
  "license": "Apache-2.0",
8
8
  "sideEffects": false,
9
9
  "files": [
@@ -101,7 +101,9 @@ export class GraphQLTransport extends Experimental_CoreClient {
101
101
  digest: obj.digest!,
102
102
  owner: mapOwner(obj.owner!),
103
103
  type: obj.asMoveObject?.contents?.type?.repr!,
104
- content: fromBase64(obj.asMoveObject?.contents?.bcs!),
104
+ content: obj.asMoveObject
105
+ ? fromBase64(obj.asMoveObject?.contents?.bcs!)
106
+ : new Uint8Array(),
105
107
  };
106
108
  }),
107
109
  };
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.30.4';
6
+ export const PACKAGE_VERSION = '1.30.5';
7
7
  export const TARGETED_RPC_VERSION = '1.50.0';