@msafe/sui3-sdk 1.0.10 → 1.0.12
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.cjs +6 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/simulate/simulator.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -201,7 +201,12 @@ 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
|
|
205
210
|
}
|
|
206
211
|
});
|
|
207
212
|
} catch (e) {
|