@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@msafe/sui3-sdk",
3
- "version": "1.0.10",
3
+ "version": "1.0.13",
4
4
  "description": "SDK for MSafe SUI V3",
5
5
  "type": "module",
6
6
  "module": "./dist/index.js",
@@ -48,7 +48,15 @@ export class Simulator {
48
48
  try {
49
49
  inspectResult = await suiClient.simulateTransaction({
50
50
  transaction: built,
51
- include: { effects: true },
51
+ include: {
52
+ effects: true,
53
+ balanceChanges: true,
54
+ events: true,
55
+ objectTypes: true,
56
+ transaction: true,
57
+ bcs: true,
58
+ commandResults: true,
59
+ },
52
60
  });
53
61
  } catch (e: unknown) {
54
62
  const message = e instanceof Error ? e.message : String(e);
@@ -8,7 +8,15 @@ export interface GasObjectReference {
8
8
  digest: string;
9
9
  }
10
10
 
11
- export type SimulateDryRunResponse = SuiClientTypes.SimulateTransactionResult<{ effects: true }>;
11
+ export type SimulateDryRunResponse = SuiClientTypes.SimulateTransactionResult<{
12
+ effects: true;
13
+ balanceChanges: true;
14
+ events: true;
15
+ objectTypes: true;
16
+ transaction: true;
17
+ bcs: true;
18
+ commandResults: true;
19
+ }>;
12
20
 
13
21
  export interface PendingTx {
14
22
  application: string;