@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/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/libs/suiInteractor/suiInteractor.ts +8 -0
package/dist/index.js
CHANGED
|
@@ -648,10 +648,17 @@ var SuiInteractor = class {
|
|
|
648
648
|
}) {
|
|
649
649
|
for (const clientIdx in this.clients) {
|
|
650
650
|
try {
|
|
651
|
+
const txResOptions = {
|
|
652
|
+
showEvents: true,
|
|
653
|
+
showEffects: true,
|
|
654
|
+
showObjectChanges: true,
|
|
655
|
+
showBalanceChanges: true
|
|
656
|
+
};
|
|
651
657
|
return await this.clients[clientIdx].waitForTransaction({
|
|
652
658
|
digest,
|
|
653
659
|
timeout,
|
|
654
|
-
pollInterval
|
|
660
|
+
pollInterval,
|
|
661
|
+
options: txResOptions
|
|
655
662
|
});
|
|
656
663
|
} catch (err) {
|
|
657
664
|
console.warn(
|