@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.mjs
CHANGED
|
@@ -615,10 +615,17 @@ var SuiInteractor = class {
|
|
|
615
615
|
}) {
|
|
616
616
|
for (const clientIdx in this.clients) {
|
|
617
617
|
try {
|
|
618
|
+
const txResOptions = {
|
|
619
|
+
showEvents: true,
|
|
620
|
+
showEffects: true,
|
|
621
|
+
showObjectChanges: true,
|
|
622
|
+
showBalanceChanges: true
|
|
623
|
+
};
|
|
618
624
|
return await this.clients[clientIdx].waitForTransaction({
|
|
619
625
|
digest,
|
|
620
626
|
timeout,
|
|
621
|
-
pollInterval
|
|
627
|
+
pollInterval,
|
|
628
|
+
options: txResOptions
|
|
622
629
|
});
|
|
623
630
|
} catch (err) {
|
|
624
631
|
console.warn(
|