Params

Parameters queries the staking parameters.

GET//rest.origin.uptick.network/cosmos/staking/v1beta1/params
Response

A successful response.

Body
paramsobject

params holds all the parameters of this module.

Request
const response = await fetch('//rest.origin.uptick.network/cosmos/staking/v1beta1/params', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "params": {
    "unbonding_time": "text",
    "bond_denom": "text",
    "min_commission_rate": "text"
  }
}

Last updated