From 553f34c3983b7ad9301c8704c9281c4be77136db Mon Sep 17 00:00:00 2001 From: Thunnini Date: Wed, 21 Dec 2022 00:54:13 +0900 Subject: [PATCH] Minor fix --- wallets/keplr.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wallets/keplr.ts b/wallets/keplr.ts index 06c5be5..18c9108 100644 --- a/wallets/keplr.ts +++ b/wallets/keplr.ts @@ -53,7 +53,9 @@ export class KeplrWallet implements Wallet { return chainInfos.map((chainInfo) => { return { ...chainInfo, - isEthermintLike: chainInfo.features?.includes("eth-address-gen"), + isEthermintLike: + chainInfo.features?.includes("eth-address-gen") || + chainInfo.features?.includes("eth-key-sign"), }; }); });