From 60f2ca60e4cf24d478b97f0c71d4138e4e33f93a Mon Sep 17 00:00:00 2001 From: Pham Tu Date: Fri, 29 Mar 2024 13:56:04 +0700 Subject: [PATCH] disable cosmwasm by default --- src/stores/useDashboard.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/useDashboard.ts b/src/stores/useDashboard.ts index b2d2c8ca..3809688b 100644 --- a/src/stores/useDashboard.ts +++ b/src/stores/useDashboard.ts @@ -153,7 +153,7 @@ export function fromLocal(lc: LocalConfig): ChainConfig { { denom: x.symbol.toLowerCase(), exponent: Number(x.exponent) }, ], })); - conf.cosmwasmEnabled = lc.cosmwasm_enabled ?? true; + conf.cosmwasmEnabled = lc.cosmwasm_enabled ?? false; conf.versions = { cosmosSdk: lc.sdk_version, };