From d48002c526068973018d560455e4651f88c77620 Mon Sep 17 00:00:00 2001 From: Rootul P Date: Mon, 22 Jan 2024 11:55:28 -0500 Subject: [PATCH] docs: mark two params as gov modifiable (#3025) Closes https://github.com/celestiaorg/celestia-app/issues/2972 --- specs/src/specs/params.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/specs/src/specs/params.md b/specs/src/specs/params.md index 65318296..ddde1936 100644 --- a/specs/src/specs/params.md +++ b/specs/src/specs/params.md @@ -34,7 +34,7 @@ are blocked by the `x/paramfilter` module. | consensus.evidence.MaxAgeNumBlocks | 120960 | The maximum number of blocks before evidence is considered invalid. This value will stop CometBFT from pruning block data. | True | | consensus.evidence.MaxBytes | 1MiB | Maximum size in bytes used by evidence in a given block. | True | | consensus.validator.PubKeyTypes | Ed25519 | The type of public key used by validators. | False | -| consensus.Version.AppVersion | 1 | Determines protocol rules used for a given height. Incremented by the application upon an upgrade. | False | +| consensus.Version.AppVersion | 1 | Determines protocol rules used for a given height. Incremented by the application upon an upgrade. | True | | distribution.BaseProposerReward | 0 | Reward in the mint denomination for proposing a block. | True | | distribution.BonusProposerReward | 0 | Extra reward in the mint denomination for proposers based on the voting power included in the commit. | True | | distribution.CommunityTax | 0.02 (2%) | Percentage of the inflation sent to the community pool. | True | @@ -61,6 +61,8 @@ are blocked by the `x/paramfilter` module. | staking.BondDenom | utia | Bondable coin denomination. | False | | staking.HistoricalEntries | 10000 | Number of historical entries to persist in store. | True | | staking.MaxEntries | 7 | Maximum number of entries in the redelegation queue. | True | -| staking.MaxValidators | 100 | Maximum number of validators. | False | +| staking.MaxValidators | 100 | Maximum number of validators. | True | | staking.MinCommissionRate | 0.05 (5%) | Minimum commission rate used by all validators. | True | | staking.UnbondingTime | 1814400 (21 days) | Duration of time for unbonding in seconds. | False | + +Note: none of the mint module parameters are governance modifiable because they have been converted into hardcoded constants. See the x/mint README.md for more details.