@cryptorubic/web3 1.6.1-alpha-cctp.1 → 1.6.2

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": "@cryptorubic/web3",
3
- "version": "1.6.1-alpha-cctp.1",
3
+ "version": "1.6.2",
4
4
  "dependencies": {
5
5
  "@ethersproject/bignumber": "^5.8.0",
6
6
  "@mysten/sui": "^1.24.0",
@@ -25,7 +25,7 @@ class SuiAdapter extends abstract_adapter_1.AbstractAdapter {
25
25
  }
26
26
  async getTransactionStatus(srcTxHash) {
27
27
  try {
28
- const txDetails = await this.public.getTransactionBlock({ digest: srcTxHash });
28
+ const txDetails = await this.public.getTransactionBlock({ digest: srcTxHash, options: { showEffects: true } });
29
29
  const status = txDetails?.effects?.status.status;
30
30
  if (!status) {
31
31
  return tx_status_1.TX_STATUS.PENDING;