Params

Params queries all parameters.

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

A successful response.

Body
paramsobject

params defines the parameters of the module.

Request
const response = await fetch('https://atom.nownodes.io/cosmos/auth/v1beta1/params', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "params": {
    "max_memo_characters": "text",
    "tx_sig_limit": "text",
    "tx_size_cost_per_byte": "text",
    "sig_verify_cost_ed25519": "text",
    "sig_verify_cost_secp256k1": "text"
  }
}

Last updated