diff --git a/src/libs/keplr.ts b/src/libs/keplr.ts index 29903c70..e3096f0d 100644 --- a/src/libs/keplr.ts +++ b/src/libs/keplr.ts @@ -10,7 +10,7 @@ import { getAddress, getAddressByEIP191 } from 'helper'; import { EIP_EIP_STORAGE_KEY_ACC, MetamaskOfflineSigner } from './eip191'; export default class Keplr extends CosmosWallet { - async createCosmosSigner(chainId: CosmosChainId): Promise { + async createCosmosSigner(chainId: CosmosChainId): Promise { const keplr = await this.getKeplr(); if (keplr) return await keplr.getOfflineSignerAuto(chainId); if (window.ethereum) return await MetamaskOfflineSigner.connect(window.ethereum, network.denom);