Deprecate use of x/params
#2745
Labels
component:scaffold
Feature, enhancement, or refactor related to scaffolding.
Milestone
x/params
#2745
The Cosmos SDK is moving to deprecate the usage of the
x/params
module in future releases (starting inv0.47.x
I believe). This is becausex/params
contains some of the remaining usages of AMINO in the codebase.Modules will now self manage parameters. Overall, this makes sense as it removes AMINO and decouples modules a bit more. More details can be found with the corresponding ADR.
Updated templates will include:
x/params
from theapp
templateUpdateParams
Txauthority
field to the module keeper. This is an address that is enabled by governance to submit theUpdateParams
Tx (authtypes.NewModuleAddress(govtypes.ModuleName).String()
)Here is an example of migrating away from
x/params
in thex/distr
module:The text was updated successfully, but these errors were encountered: