We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdd9d7f commit 602ebe3Copy full SHA for 602ebe3
1 file changed
src/connectors/keplrMobile/index.ts
@@ -58,14 +58,8 @@ export class KeplrMobileBaseConnector extends Connector {
58
}
59
60
async connect(_args: ConnectArgs = {}): Promise<ConnectorData> {
61
- await this.ensureWallet()
62
-
63
- // will return empty data, connect will only open keplr mobile app
64
- // will require to implement the wallet connection
65
- return {
66
- account: "",
67
- chainId: BigInt(0),
68
- }
+ this.ensureWallet()
+ throw new Error("Please continue in Keplr mobile app")
69
70
71
async disconnect(): Promise<void> {
0 commit comments