/cosmos/gov/v1/params/{params_type}
Params queries all parameters of the gov module.
Parameters:
params_type-string, params_type defines which parameters to query for, can be one of "voting", "tallying" or "deposit".
Example:
// Request
curl -X GET -H 'Content-Type: application/json' https://zetachain.blockpi.network/lcd/v1/<your-api-key>/cosmos/gov/v1/params/voting
// Result
{
"voting_params": {
"voting_period": "43200s"
},
"deposit_params": null,
"tally_params": null
}
Last updated
Was this helpful?