|
1 | 1 | { |
2 | | - "summary": "Updates the forkchoice state", |
3 | | - "description": "", |
4 | | - "name": "engine_forkchoiceUpdatedV1", |
5 | | - "params": [ |
6 | | - { |
7 | | - "summary": "", |
8 | | - "description": "Forkchoice state", |
9 | | - "name": "forkchoice_state", |
10 | | - "schema": { |
11 | | - "$ref": "#/$defs/ForkchoiceStateV1" |
12 | | - }, |
13 | | - "required": true, |
14 | | - "deprecated": false |
15 | | - }, |
16 | | - { |
17 | | - "summary": "", |
18 | | - "description": "Payload attributes", |
19 | | - "name": "payload_attributes", |
20 | | - "schema": { |
21 | | - "$ref": "#/$defs/PayloadAttributesV1" |
22 | | - }, |
23 | | - "required": false, |
24 | | - "deprecated": false |
25 | | - } |
26 | | - ], |
27 | | - "defs": { |
| 2 | + "$schema": "https://json-schema.org/draft/2020-12/schema", |
| 3 | + "$id": "https://github.com/selesy/ethereum-mcp/engine_forkchoiceUpdatedV1.json", |
| 4 | + "$defs": { |
28 | 5 | "ForkchoiceStateV1": { |
29 | 6 | "properties": { |
30 | 7 | "finalizedBlockHash": { |
|
91 | 68 | "pattern": "^0x(0|[1-9a-f][0-9a-f]{0,15})$", |
92 | 69 | "title": "hex encoded 64 bit unsigned integer" |
93 | 70 | } |
94 | | - } |
| 71 | + }, |
| 72 | + "properties": { |
| 73 | + "forkchoice_state": { |
| 74 | + "$ref": "#/$defs/ForkchoiceStateV1", |
| 75 | + "title": "forkchoice_state", |
| 76 | + "description": "Forkchoice state" |
| 77 | + }, |
| 78 | + "payload_attributes": { |
| 79 | + "$ref": "#/$defs/PayloadAttributesV1", |
| 80 | + "title": "payload_attributes", |
| 81 | + "description": "Payload attributes" |
| 82 | + } |
| 83 | + }, |
| 84 | + "type": "object", |
| 85 | + "required": [ |
| 86 | + "forkchoice_state" |
| 87 | + ], |
| 88 | + "title": "engine_forkchoiceUpdatedV1", |
| 89 | + "description": "Updates the forkchoice state" |
95 | 90 | } |
0 commit comments