params
The params
module is responsible for providing a globally available parameter store. There are two main types, Keeper and Subspace. Subspace is an isolated namespace for a paramstore, where keys are prefixed by preconfigured spacename. Keeper has a permission to access all existing spaces.
Subspace can be used by the individual keepers, which need a private parameter store that the other keepers cannot modify. The params Keeper can be used to add a route to x/gov router in order to modify any parameter in case a proposal passes.
For more information, visit https://docs.cosmos.network/main/modules/params/
Queries
Query
defines the gRPC querier service.
QueryParamsRequest
QueryParamsRequest
is request type for the Query/Params
RPC method.
QueryParamsResponse
QueryParamsResponse
is response type for the Query/Params
RPC method.
QuerySubspacesRequest
QuerySubspacesRequest
defines a request type for querying for all registered subspaces and all keys for a subspace.
QuerySubspacesResponse
QuerySubspacesResponse
defines the response types for querying for all registered subspaces and all keys for a subspace.