@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.cjs +7 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/simulate/simulator.ts +9 -1
- package/src/types/msafe.ts +9 -1
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) {
|