Params

Parameters queries the staking parameters.

GEThttps://atom.nownodes.io/cosmos/staking/v1beta1/params
Response

A successful response.

Body
paramsobject

params holds all the parameters of this module.

Request
const response = await fetch('https://atom.nownodes.io/cosmos/staking/v1beta1/params', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "params": {
    "unbonding_time": "text",
    "max_validators": 0,
    "max_entries": 0,
    "historical_entries": 0,
    "bond_denom": "text",
    "min_commission_rate": "text",
    "key_rotation_fee": {
      "denom": "text",
      "amount": "text"
    }
  }
}

Last updated