suidouble 0.0.22 → 0.0.23

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.
@@ -151,6 +151,11 @@ class SuiPackageModule extends SuiCommonMethods {
151
151
  },
152
152
  });
153
153
 
154
+ let status = null;
155
+ if (result && result.effects && result.effects.status && result.effects.status.status) {
156
+ status = result.effects.status.status;
157
+ }
158
+
154
159
  const listCreated = [];
155
160
  const listMutated = [];
156
161
  const listDeleted = [];
@@ -242,6 +247,7 @@ class SuiPackageModule extends SuiCommonMethods {
242
247
  created: listCreated,
243
248
  mutated: listMutated,
244
249
  deleted: listDeleted,
250
+ status: status,
245
251
  };
246
252
  }
247
253
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suidouble",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "description": "Set of provider, package and object classes for javascript representation of Sui Move smart contracts. Use same code for publishing, upgrading, integration testing, interaction with smart contracts and integration in browser web3 dapps",
5
5
  "main": "index.js",
6
6
  "scripts": {