Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions src/connectors/keplrMobile/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,8 @@ export class KeplrMobileBaseConnector extends Connector {
}

async connect(_args: ConnectArgs = {}): Promise<ConnectorData> {
await this.ensureWallet()

// will return empty data, connect will only open keplr mobile app
// will require to implement the wallet connection
return {
account: "",
chainId: BigInt(0),
}
this.ensureWallet()
throw new Error("Please continue in Keplr mobile app")
}

async disconnect(): Promise<void> {
Expand Down