From 8ca8f2949cbf734d4b3a8ad01f46f4d72bb6699f Mon Sep 17 00:00:00 2001 From: Clockwork Date: Thu, 7 Dec 2023 13:09:07 +0200 Subject: [PATCH 1/2] fix: Minor keplr type-checking bug --- ignite/pkg/cosmosgen/templates/root/client.ts.tpl | 3 --- 1 file changed, 3 deletions(-) diff --git a/ignite/pkg/cosmosgen/templates/root/client.ts.tpl b/ignite/pkg/cosmosgen/templates/root/client.ts.tpl index a9088ce67b..4b635ef80f 100644 --- a/ignite/pkg/cosmosgen/templates/root/client.ts.tpl +++ b/ignite/pkg/cosmosgen/templates/root/client.ts.tpl @@ -135,8 +135,6 @@ export class IgniteClient extends EventEmitter { return y; }) ?? []; - let coinType = 118; - if (chainId) { const suggestOptions: ChainInfo = { chainId, @@ -148,7 +146,6 @@ export class IgniteClient extends EventEmitter { bech32Config, currencies, feeCurrencies, - coinType, ...keplrChainInfo, }; await window.keplr.experimentalSuggestChain(suggestOptions); From 4ff276bb1bd35a1355fc6b4990809089f2b4c247 Mon Sep 17 00:00:00 2001 From: Clockwork Date: Thu, 7 Dec 2023 13:41:53 +0200 Subject: [PATCH 2/2] chore: Add changelog --- changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/changelog.md b/changelog.md index 37797bd902..abe23ed376 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,10 @@ ## Unreleased +### Fixes + +- [#3825](https://github.com/ignite/cli/pull/3825) Fix a minor Keplr type-checking bug in TS client + ## [`v28.0.0`](https://github.com/ignite/cli/releases/tag/v28.0.0) ### Features