Skip to content

Commit be978d9

Browse files
bdchathamclaude
andcommitted
fix: add params module to atlantic-2 and arctic-1 genesis
Same issue as pacific-1: the params module was either null or missing cosmosGasParams, causing v6.4.1 to panic on cold start. On-chain values are identical across all three networks: - cosmosGasMultiplierNumerator: 1 - cosmosGasMultiplierDenominator: 1 - globalMinimumGasPrices: 0.02 usei Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 850c08a commit be978d9

2 files changed

Lines changed: 15 additions & 3 deletions

File tree

chains/arctic-1/genesis.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28461,8 +28461,12 @@
2846128461
"price_snapshots": []
2846228462
},
2846328463
"params": {
28464-
"fees_params": {
28465-
"global_minimum_gas_prices": "0.400000000000000000"
28464+
"feesParams": {
28465+
"globalMinimumGasPrices": [{"denom": "usei", "amount": "0.020000000000000000"}]
28466+
},
28467+
"cosmosGasParams": {
28468+
"cosmosGasMultiplierNumerator": "1",
28469+
"cosmosGasMultiplierDenominator": "1"
2846628470
}
2846728471
},
2846828472
"slashing": {

chains/atlantic-2/genesis.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26284,7 +26284,15 @@
2628426284
"aggregate_exchange_rate_votes": [],
2628526285
"price_snapshots": []
2628626286
},
26287-
"params": null,
26287+
"params": {
26288+
"feesParams": {
26289+
"globalMinimumGasPrices": [{"denom": "usei", "amount": "0.020000000000000000"}]
26290+
},
26291+
"cosmosGasParams": {
26292+
"cosmosGasMultiplierNumerator": "1",
26293+
"cosmosGasMultiplierDenominator": "1"
26294+
}
26295+
},
2628826296
"slashing": {
2628926297
"params": {
2629026298
"signed_blocks_window": "10000",

0 commit comments

Comments
 (0)