Params

Params queries all parameters of the gov module.

get
Path parameters
params_typeanyRequired

params_type defines which parameters to query for, can be one of "voting", "tallying" or "deposit".

Responses
application/json
objectOptional

QueryParamsResponse is the response type for the Query/Params RPC method.

get
GET /cosmos/gov/v1beta1/params/{params_type} HTTP/1.1
Host: fet.nownodes.io
Accept: */*
{
  "voting_params": {
    "voting_period": "text"
  },
  "deposit_params": {
    "min_deposit": [
      {
        "denom": "text",
        "amount": "text"
      }
    ],
    "max_deposit_period": "text"
  },
  "tally_params": {
    "quorum": "Ynl0ZXM=",
    "threshold": "Ynl0ZXM=",
    "veto_threshold": "Ynl0ZXM="
  }
}