coreum-js 2.8.24 → 2.8.25

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.
@@ -383,7 +383,7 @@ class Client {
383
383
  await (0, services_1.connectKeplr)(this.config);
384
384
  await window.keplr.enable(this.config.chain_id);
385
385
  // get offline signer for signing txs
386
- const offlineSigner = await window.getOfflineSigner(this.config.chain_id);
386
+ const offlineSigner = await window.getOfflineSignerAuto(this.config.chain_id);
387
387
  await this._createClient(offlineSigner);
388
388
  }
389
389
  catch (e) {
@@ -385,7 +385,7 @@ export class Client {
385
385
  await connectKeplr(this.config);
386
386
  await window.keplr.enable(this.config.chain_id);
387
387
  // get offline signer for signing txs
388
- const offlineSigner = await window.getOfflineSigner(this.config.chain_id);
388
+ const offlineSigner = await window.getOfflineSignerAuto(this.config.chain_id);
389
389
  await this._createClient(offlineSigner);
390
390
  }
391
391
  catch (e) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coreum-js",
3
- "version": "2.8.24",
3
+ "version": "2.8.25",
4
4
  "description": "JS/TS Library to to easily make use of the Coreum Blockchain",
5
5
  "main": "dist/main/index.js",
6
6
  "module": "dist/module/index.js",