ForkchoiceStateV1
JSON Schema
{
"title": "Forkchoice state object V1",
"type": "object",
"required": [
"headBlockHash",
"safeBlockHash",
"finalizedBlockHash"
],
"properties": {
"headBlockHash": {
"title": "Head block hash",
"type": "string",
"pattern": "^0x[0-9a-f]{64}$"
},
"safeBlockHash": {
"title": "Safe block hash",
"type": "string",
"pattern": "^0x[0-9a-f]{64}$"
},
"finalizedBlockHash": {
"title": "Finalized block hash",
"type": "string",
"pattern": "^0x[0-9a-f]{64}$"
}
}
}
Properties
| Name | Type | Required | Description |
|---|---|---|---|
| headBlockHash | string | yes | |
| safeBlockHash | string | yes | |
| finalizedBlockHash | string | yes |