governance_itemCacheFromDb
The itemCacheFromDb returns the governance information stored in the given block. If no changes were stored in the given block, the function returns null.
JSONRPC: governance_itemCacheFromDb
Request
- application/json
Body
A block number to query the governance change made in the block.
Responses
- 200
Stored governance information at a given block
- application/json
- Schema
- Example (from schema)
Schema
error
object
A Number that indicates the error type that occurred. This MUST be an integer.
code | message | description |
---|---|---|
-32700 | Parse error | invalid JSON was received by the server. An error occurred on the server while parsing the JSON text. |
-32602 | Invalid params | Invalid method parameter(s). |
A String providing a short description of the error. The message SHOULD be limited to a concise single sentence.
A Primitive or Structured value that contains additional information about the error. This may be omitted. The value of this member is defined by the Server (e.g. detailed error information, nested errors etc.).
Stored governance information at a given block
{
"jsonrpc": "2.0",
"id": 0,
"error": {
"code": -32700,
"message": "Parse error",
"data": "string"
},
"result": {
"governance.governancemode": "single",
"governance.governingnode": "0xe733cb4d279da696f30d470f8c04decb54fcb0d2",
"governance.unitprice": 25000000000,
"istanbul.committeesize": 1,
"istanbul.epoch": 30,
"istanbul.policy": 2,
"reward.deferredtxfee": true,
"reward.minimumstake": "5000000",
"reward.mintingamount": "6400000000000000000",
"reward.proposerupdateinterval": 3600,
"reward.ratio": "50/40/10",
"reward.stakingupdateinterval": 20,
"reward.useginicoeff": false
}
}