@xchainjs/xchain-thorchain 3.0.3 → 3.0.5

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/lib/index.esm.js CHANGED
@@ -3714,7 +3714,9 @@ class ClientKeystore extends Client {
3714
3714
  gas: gasLimit.toString(),
3715
3715
  }, memo);
3716
3716
  }
3717
- catch (_a) { }
3717
+ catch (e) {
3718
+ console.warn(e instanceof Error ? e.message : String(e));
3719
+ }
3718
3720
  }
3719
3721
  throw Error('No clients available. Can not sign and broadcast deposit transaction');
3720
3722
  });
package/lib/index.js CHANGED
@@ -3740,7 +3740,9 @@ class ClientKeystore extends Client {
3740
3740
  gas: gasLimit.toString(),
3741
3741
  }, memo);
3742
3742
  }
3743
- catch (_a) { }
3743
+ catch (e) {
3744
+ console.warn(e instanceof Error ? e.message : String(e));
3745
+ }
3744
3746
  }
3745
3747
  throw Error('No clients available. Can not sign and broadcast deposit transaction');
3746
3748
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xchainjs/xchain-thorchain",
3
- "version": "3.0.3",
3
+ "version": "3.0.5",
4
4
  "description": "Custom Thorchain client and utilities used by XChainJS clients",
5
5
  "keywords": [
6
6
  "THORChain",
@@ -42,8 +42,8 @@
42
42
  "@cosmjs/stargate": "0.32.4",
43
43
  "@ledgerhq/hw-transport": "6.30.6",
44
44
  "@xchainjs/ledger-thorchain": "0.2.0",
45
- "@xchainjs/xchain-client": "2.0.0",
46
- "@xchainjs/xchain-cosmos-sdk": "2.0.0",
45
+ "@xchainjs/xchain-client": "2.0.1",
46
+ "@xchainjs/xchain-cosmos-sdk": "2.0.1",
47
47
  "@xchainjs/xchain-crypto": "1.0.0",
48
48
  "@xchainjs/xchain-util": "2.0.0",
49
49
  "axios": "1.8.4",