@mysten/sui 1.0.0 → 1.0.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.
@@ -195,25 +195,27 @@ export function serializeV1TransactionData(
195
195
  return {
196
196
  kind: 'Input',
197
197
  index,
198
- value: input.Object.ImmOrOwnedObject
199
- ? {
200
- ImmOrOwnedObject: input.Object.ImmOrOwnedObject,
201
- }
202
- : input.Object.Receiving
203
- ? {
204
- Receiving: {
205
- digest: input.Object.Receiving.digest,
206
- version: input.Object.Receiving.version,
207
- objectId: input.Object.Receiving.objectId,
208
- },
209
- }
210
- : {
211
- SharedObject: {
212
- mutable: input.Object.SharedObject.mutable,
213
- initialSharedVersion: input.Object.SharedObject.initialSharedVersion,
214
- objectId: input.Object.SharedObject.objectId,
215
- },
216
- },
198
+ value: {
199
+ Object: input.Object.ImmOrOwnedObject
200
+ ? {
201
+ ImmOrOwnedObject: input.Object.ImmOrOwnedObject,
202
+ }
203
+ : input.Object.Receiving
204
+ ? {
205
+ Receiving: {
206
+ digest: input.Object.Receiving.digest,
207
+ version: input.Object.Receiving.version,
208
+ objectId: input.Object.Receiving.objectId,
209
+ },
210
+ }
211
+ : {
212
+ SharedObject: {
213
+ mutable: input.Object.SharedObject.mutable,
214
+ initialSharedVersion: input.Object.SharedObject.initialSharedVersion,
215
+ objectId: input.Object.SharedObject.objectId,
216
+ },
217
+ },
218
+ },
217
219
  type: 'object',
218
220
  };
219
221
  }
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.0.0';
6
+ export const PACKAGE_VERSION = '1.0.2';
7
7
  export const TARGETED_RPC_VERSION = '1.27.0';