Last updated 8 months ago
A successful response.
params are the tendermint consensus params stored in the consensus module. Please note that params.version is not populated in this response, it is tracked separately in the x/upgrade module.
params.version
const response = await fetch('https://atom.nownodes.io/cosmos/consensus/v1/params', { method: 'GET', headers: {}, }); const data = await response.json();
{ "params": { "block": { "max_bytes": "text", "max_gas": "text" }, "evidence": { "max_age_num_blocks": "text", "max_age_duration": "text", "max_bytes": "text" }, "validator": { "pub_key_types": [ "text" ] }, "version": { "app": "text" }, "abci": { "vote_extensions_enable_height": "text" } } }