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"), }; }); });