@msafe/sui3-sdk 1.0.10 → 1.0.13

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/dist/index.d.cts CHANGED
@@ -187,6 +187,12 @@ interface GasObjectReference {
187
187
  }
188
188
  type SimulateDryRunResponse = SuiClientTypes.SimulateTransactionResult<{
189
189
  effects: true;
190
+ balanceChanges: true;
191
+ events: true;
192
+ objectTypes: true;
193
+ transaction: true;
194
+ bcs: true;
195
+ commandResults: true;
190
196
  }>;
191
197
  interface PendingTx {
192
198
  application: string;
package/dist/index.d.ts CHANGED
@@ -187,6 +187,12 @@ interface GasObjectReference {
187
187
  }
188
188
  type SimulateDryRunResponse = SuiClientTypes.SimulateTransactionResult<{
189
189
  effects: true;
190
+ balanceChanges: true;
191
+ events: true;
192
+ objectTypes: true;
193
+ transaction: true;
194
+ bcs: true;
195
+ commandResults: true;
190
196
  }>;
191
197
  interface PendingTx {
192
198
  application: string;
package/dist/index.js CHANGED
@@ -201,7 +201,13 @@ var Simulator = class {
201
201
  inspectResult = await suiClient.simulateTransaction({
202
202
  transaction: built,
203
203
  include: {
204
- effects: true
204
+ effects: true,
205
+ balanceChanges: true,
206
+ events: true,
207
+ objectTypes: true,
208
+ transaction: true,
209
+ bcs: true,
210
+ commandResults: true
205
211
  }
206
212
  });
207
213
  } catch (e) {