decentralcardgame-cardchain-client-ts 0.0.25 → 0.0.26-rc1
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/client.js +1 -1
- package/client.ts +1 -1
- package/package.json +1 -1
package/client.js
CHANGED
|
@@ -129,7 +129,7 @@ export class IgniteClient extends EventEmitter {
|
|
|
129
129
|
};
|
|
130
130
|
}
|
|
131
131
|
await window.keplr.enable(chainId);
|
|
132
|
-
this.signer =
|
|
132
|
+
this.signer = window.keplr.getOfflineSignerOnlyAmino(chainId); //.getOfflineSignerAuto(chainId);
|
|
133
133
|
this.emit("signer-changed", this.signer);
|
|
134
134
|
}
|
|
135
135
|
catch (e) {
|
package/client.ts
CHANGED
|
@@ -171,7 +171,7 @@ export class IgniteClient extends EventEmitter {
|
|
|
171
171
|
};
|
|
172
172
|
}
|
|
173
173
|
await window.keplr.enable(chainId);
|
|
174
|
-
this.signer =
|
|
174
|
+
this.signer = window.keplr.getOfflineSignerOnlyAmino(chainId) //.getOfflineSignerAuto(chainId);
|
|
175
175
|
this.emit("signer-changed", this.signer);
|
|
176
176
|
} catch (e) {
|
|
177
177
|
throw new Error(
|
package/package.json
CHANGED