@0xobelisk/sui-client 1.0.5 → 1.0.6

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xobelisk/sui-client",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Tookit for interacting with move eps framework",
5
5
  "keywords": [
6
6
  "sui",
@@ -87,10 +87,18 @@ export class SuiInteractor {
87
87
  }) {
88
88
  for (const clientIdx in this.clients) {
89
89
  try {
90
+ const txResOptions: SuiTransactionBlockResponseOptions = {
91
+ showEvents: true,
92
+ showEffects: true,
93
+ showObjectChanges: true,
94
+ showBalanceChanges: true,
95
+ };
96
+
90
97
  return await this.clients[clientIdx].waitForTransaction({
91
98
  digest,
92
99
  timeout,
93
100
  pollInterval,
101
+ options: txResOptions,
94
102
  });
95
103
  } catch (err) {
96
104
  console.warn(