@depay/web3-wallets-evm 15.1.2 → 15.1.3

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.
@@ -60221,7 +60221,7 @@ class WalletConnectV1 {
60221
60221
 
60222
60222
  if(options && options.reconnect) {
60223
60223
  if(this.connector) {
60224
- await this.connector.killSession();
60224
+ try{ await this.connector.killSession(); } catch (e) {}
60225
60225
  this.disconnect();
60226
60226
  }
60227
60227
  }
package/dist/esm/index.js CHANGED
@@ -1315,7 +1315,7 @@ class WalletConnectV1 {
1315
1315
 
1316
1316
  if(options && options.reconnect) {
1317
1317
  if(this.connector) {
1318
- await this.connector.killSession();
1318
+ try{ await this.connector.killSession(); } catch (e) {}
1319
1319
  this.disconnect();
1320
1320
  }
1321
1321
  }
@@ -60220,7 +60220,7 @@
60220
60220
 
60221
60221
  if(options && options.reconnect) {
60222
60222
  if(this.connector) {
60223
- await this.connector.killSession();
60223
+ try{ await this.connector.killSession(); } catch (e) {}
60224
60224
  this.disconnect();
60225
60225
  }
60226
60226
  }
package/dist/umd/index.js CHANGED
@@ -1313,7 +1313,7 @@
1313
1313
 
1314
1314
  if(options && options.reconnect) {
1315
1315
  if(this.connector) {
1316
- await this.connector.killSession();
1316
+ try{ await this.connector.killSession(); } catch (e) {}
1317
1317
  this.disconnect();
1318
1318
  }
1319
1319
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@depay/web3-wallets-evm",
3
3
  "moduleName": "Web3Wallets",
4
- "version": "15.1.2",
4
+ "version": "15.1.3",
5
5
  "description": "One-Stop-Shop JavaScript library to integrate various web3 crypto wallets and multiple blockchains at once with a single interface.",
6
6
  "main": "dist/umd/index.evm.js",
7
7
  "module": "dist/esm/index.evm.js",