disable cosmwasm by default

This commit is contained in:
Pham Tu 2024-03-29 13:56:04 +07:00
parent 8ec47d1451
commit 60f2ca60e4
No known key found for this signature in database
GPG Key ID: 7460FD99133ADA1C

View File

@ -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,
};