get_consensus - Nervos
Example code for the get_consensus JSON-RPC method. Complete guide on how to use get_consensus JSON-RPC in GetBlock Web3 documentation.
Parameters
Request Example
curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
"jsonrpc": "2.0",
"method": "get_consensus",
"params": [],
"id": "getblock.io"
}'import axios from 'axios';
const data = JSON.stringify({
"jsonrpc": "2.0",
"method": "get_consensus",
"params": [],
"id": "getblock.io"
});
const config = {
method: 'post',
url: 'https://go.getblock.io/<ACCESS-TOKEN>/',
headers: {
'Content-Type': 'application/json'
},
data: data
};
axios(config)
.then(response => console.log(JSON.stringify(response.data, null, 2)))
.catch(error => console.log(error));Response Example
{
"jsonrpc": "2.0",
"id": "getblock.io",
"result": {
"id": "ckb",
"genesis_hash": "0x92b197aa1fba0f63633922c61c92375c9c074a93e85963554f5499fe1450d0e5",
"dao_type_hash": "0x82d76d1b75fe2fd9a27dfbaa65a039221a380d76c926f378d3f81cf3e7e13f2e",
"secp256k1_blake160_sighash_all_type_hash": "0x709f3fda12f561cfacf92273c57a98fede188a3f1a59b1f888d113f9cce08649",
"secp256k1_blake160_multisig_all_type_hash": "0x5c5069eb0857efc65e1bca0c07df34c31663b3622fd3876c876320fc9634e2a8",
"initial_primary_epoch_reward": "0x71afd498d000",
"secondary_epoch_reward": "0x37d0790",
"max_uncles_num": "0x2",
"orphan_rate_target": {
"numer": "0x28",
"denom": "0x3e8"
},
"epoch_duration_target": "0x3840",
"tx_proposal_window": {
"closest": "0x2",
"farthest": "0xa"
},
"proposer_reward_ratio": {
"numer": "0x4",
"denom": "0xa"
},
"cellbase_maturity": "0x80000000000000a",
"median_time_block_count": "0x25",
"max_block_cycles": "0xd09dc300",
"max_block_bytes": "0x91c08",
"block_version": "0x0",
"tx_version": "0x0",
"type_id_code_hash": "0x00000000000000000000000000000000000000000000000000545950455f4944",
"max_block_proposals_limit": "0x5dc",
"primary_epoch_reward_halving_interval": "0x2238",
"permanent_difficulty_in_dummy": false,
"hardfork_features": [
{
"rfc": "0028",
"epoch_number": "0x1526"
}
],
"softforks": {}
}
}Response Parameters
Field
Type
Description
Use Cases
Error Handling
Status Code
Error Message
Cause
SDK Integration
Was this helpful?