Query/Params
Params(request: QueryParamsRequest) → QueryParamsResponse Retrieves the current parameters of the x/okrw module, including the authorized minter address and the mintable token denomination.
Parameters
This method has no parameters.
Returns
Type:
QueryParamsResponse Returns an object containing the params of the module.
Examples
Query params via CLI
A simple command to fetch and display the current `x/okrw` module parameters.
marood query okrw params Example Output
The command returns a JSON object with the current `minter_address` and `mint_denom`.
{
"params": {
"minter_address": "maroo1...new-minter-address...",
"mint_denom": "aokrw"
}
}