-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathopenapi.json
More file actions
597 lines (597 loc) · 27.1 KB
/
Copy pathopenapi.json
File metadata and controls
597 lines (597 loc) · 27.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
{
"openapi": "3.1.0",
"info": {
"title": "Proof Node API",
"description": "HTTP API for CL to request execution proof generation/verification of different EL/zkVM combinations. Proofs are generated asynchronously; Server-Sent Events notify when a proof request completes or fails.",
"version": "0.1.0"
},
"servers": [
{
"url": "http://localhost:3000",
"description": "Default local server"
}
],
"paths": {
"/v1/execution_proof_requests": {
"post": {
"operationId": "postExecutionProofRequests",
"summary": "Submit an execution proof request",
"description": "Accepts an SSZ-encoded ProofRequestBody (fork, payload, chain config, and proof types) and enqueues proof generation. Returns the tree-hash root computed from the submitted payload.",
"requestBody": {
"required": true,
"description": "SSZ-encoded ProofRequestBody containing the active fork, the NewPayloadRequest (transparent union across fork variants), the chain config, and the proof types to generate.",
"content": {
"application/octet-stream": {
"schema": {
"$ref": "#/components/schemas/ProofRequestBody"
}
}
}
},
"responses": {
"200": {
"description": "Proof request accepted.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProofRequestResponse"
}
}
}
},
"400": {
"description": "Invalid SSZ body, a fork that does not select the submitted payload's schema, empty or missing proof_types, or unconfigured proof type.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"examples": {
"invalid_ssz": {
"summary": "Invalid SSZ body",
"value": {
"code": 400,
"message": "invalid SSZ body: OffsetOutOfBounds(0)"
}
},
"unconfigured_proof_type": {
"summary": "Unconfigured proof type",
"value": {
"code": 400,
"message": "no zkVM configured for proof type 'reth-sp1'"
}
},
"fork_payload_mismatch": {
"summary": "Fork does not select the payload schema",
"value": {
"code": 400,
"message": "submitted payload is not valid variant for fork Cancun"
}
},
"empty_proof_types": {
"summary": "Empty proof_types",
"value": {
"code": 400,
"message": "proof_types must contain at least one valid value"
}
}
}
}
}
},
"500": {
"description": "Internal queue failure.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"example": {
"code": 500,
"message": "failed to enqueue proof: channel closed"
}
}
}
}
}
},
"get": {
"operationId": "getExecutionProofRequests",
"summary": "Subscribe to execution proof events via SSE",
"description": "Opens a Server-Sent Events stream for proof completion and failure notifications.\n\nThe server sends SSE comment lines (`:` prefix, per SSE spec) every 15 seconds as keep-alive. These are not events and should be ignored by conforming SSE clients.\n\nWhen `new_payload_request_root` is provided, the server first emits cached `proof_complete` events for cached proofs that completed before the subscription started (catch-up), then streams live events filtered to that root.\n\nCompleted proofs are held in a bounded LRU cache. Clients should download proofs promptly after receiving a `proof_complete` event, as proofs may be evicted under memory pressure.\n\n**Event types:**\n- `proof_complete` - Data payload: ProofCompleteEvent (JSON)\n- `proof_failure` - Data payload: ProofFailureEvent (JSON)",
"parameters": [
{
"name": "new_payload_request_root",
"in": "query",
"required": false,
"description": "Filter events to only this root. When omitted, all events are streamed.",
"schema": {
"$ref": "#/components/schemas/Hash256"
}
}
],
"responses": {
"200": {
"description": "SSE event stream opened. Events are delivered as `text/event-stream`.",
"content": {
"text/event-stream": {
"schema": {
"description": "SSE stream. Each message has an `event` field (event type name) and a `data` field (JSON payload). See the SSE event schemas for the payload format of each event type.",
"type": "string"
}
}
}
}
}
}
},
"/v1/execution_proofs/{new_payload_request_root}/{proof_type}": {
"get": {
"operationId": "getExecutionProofs",
"summary": "Download a completed execution proof",
"description": "Returns the raw proof bytes for a completed proof identified by its root and proof type.",
"parameters": [
{
"name": "new_payload_request_root",
"in": "path",
"required": true,
"description": "The root from the original proof request response.",
"schema": {
"$ref": "#/components/schemas/Hash256"
}
},
{
"name": "proof_type",
"in": "path",
"required": true,
"description": "The proof type to download.",
"schema": {
"$ref": "#/components/schemas/ProofType"
}
}
],
"responses": {
"200": {
"description": "Raw proof bytes.",
"content": {
"application/octet-stream": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"404": {
"description": "Proof not yet available or does not exist.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"example": {
"code": 404,
"message": "proof not found for root 0xabcd...1234 and type reth-sp1"
}
}
}
}
}
}
},
"/v1/execution_proof_verifications": {
"post": {
"operationId": "postExecutionProofVerifications",
"summary": "Verify an execution proof",
"description": "Verifies an SSZ-encoded ProofVerificationBody against the server's configured zkVM backend. A 200 response with `INVALID` status means verification ran successfully but the proof did not pass. HTTP error codes (4xx, 5xx) mean the request itself was malformed or the server could not process it.",
"requestBody": {
"required": true,
"description": "SSZ-encoded ProofVerificationBody containing the active fork, the payload root, the chain config, the proof type, and the proof bytes.",
"content": {
"application/octet-stream": {
"schema": {
"$ref": "#/components/schemas/ProofVerificationBody"
}
}
}
},
"responses": {
"200": {
"description": "Verification result.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProofVerificationResponse"
},
"examples": {
"valid": {
"summary": "Proof is valid",
"value": {
"status": "VALID"
}
},
"invalid": {
"summary": "Proof is invalid",
"value": {
"status": "INVALID"
}
}
}
}
}
},
"400": {
"description": "Invalid SSZ body.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"example": {
"code": 400,
"message": "invalid SSZ body: OffsetOutOfBounds(0)"
}
}
}
},
"404": {
"description": "The requested proof type is not configured on this server.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorResponse"
},
"example": {
"code": 404,
"message": "unknown proof_type: reth-sp1"
}
}
}
}
}
}
},
"/v1/proof_types": {
"get": {
"operationId": "getProofTypes",
"summary": "List configured proof types and their capabilities",
"description": "Returns the list of proof types initialized on this server, along with their backend kind and capabilities (can_prove, can_verify). Useful for discovering what proof types are available before submitting requests.",
"responses": {
"200": {
"description": "List of configured proof types.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProofTypesResponse"
},
"example": {
"proof_types": [
{
"proof_type": "reth-sp1",
"kind": "ere",
"can_prove": true,
"can_verify": true
},
{
"proof_type": "reth-zisk",
"kind": "verifier",
"can_prove": false,
"can_verify": true
}
]
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"ProofRequestBody": {
"type": "object",
"required": [
"fork",
"new_payload_request",
"chain_config",
"proof_types"
],
"properties": {
"fork": {
"$ref": "#/components/schemas/ProtocolFork"
},
"new_payload_request": {
"$ref": "#/components/schemas/NewPayloadRequest"
},
"chain_config": {
"$ref": "#/components/schemas/ChainConfig"
},
"proof_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ProofType"
},
"description": "Proof types to generate for this payload. Must be non-empty with no duplicates."
}
},
"description": "Logical field layout of the body for POST /v1/execution_proof_requests. The wire format is SSZ (application/octet-stream), not JSON."
},
"NewPayloadRequest": {
"type": "object",
"description": "Consensus-layer new-payload request, an SSZ transparent union across fork variants (Bellatrix, Capella, Deneb, Electra/Fulu, Gloas). See the consensus-specs NewPayloadRequest for the per-variant field layout.",
"properties": {
"execution_payload": {
"type": "object",
"description": "The fork-dependent ExecutionPayload."
}
}
},
"ChainConfig": {
"type": "object",
"required": [
"chain_id",
"active_fork"
],
"properties": {
"chain_id": {
"type": "integer",
"format": "uint64",
"description": "EIP-155 chain id."
},
"active_fork": {
"$ref": "#/components/schemas/ForkConfig"
}
},
"description": "The chain configuration the proof is verified against. It carries chain_id and the activation point of the active fork. The fork itself is a sibling field of the request body."
},
"ForkConfig": {
"type": "object",
"required": [
"activation"
],
"properties": {
"activation": {
"$ref": "#/components/schemas/ForkActivation"
}
},
"description": "Configuration of the fork active for the block."
},
"ProtocolFork": {
"type": "integer",
"format": "uint8",
"minimum": 1,
"maximum": 21,
"description": "SSZ enum discriminant selecting the active execution-layer fork, in fork order, encoded as a single byte. It selects the stateless input schema the payload is encoded under. Values outside the assigned range are rejected when the body is decoded."
},
"ForkActivation": {
"type": "object",
"description": "Activation point of the fork. At least one of block_number or timestamp is set, each SSZ-encoded as a list of zero or one element.",
"properties": {
"block_number": {
"type": "array",
"maxItems": 1,
"items": {
"type": "integer",
"format": "uint64"
},
"description": "Activation block number, for pre-merge forks."
},
"timestamp": {
"type": "array",
"maxItems": 1,
"items": {
"type": "integer",
"format": "uint64"
},
"description": "Activation timestamp, for post-merge forks."
}
}
},
"ProofType": {
"type": "string",
"enum": [
"ethrex-openvm",
"ethrex-sp1",
"ethrex-zisk",
"reth-openvm",
"reth-sp1",
"reth-zisk"
],
"description": "Case-sensitive identifier for an EL/zkVM combination."
},
"ProofRequestResponse": {
"type": "object",
"required": [
"new_payload_request_root"
],
"properties": {
"new_payload_request_root": {
"$ref": "#/components/schemas/Hash256"
}
},
"description": "Response for a successful proof request submission."
},
"Hash256": {
"type": "string",
"pattern": "^0x[0-9a-f]{64}$",
"minLength": 66,
"maxLength": 66,
"description": "A 32-byte hash represented as a 0x-prefixed lowercase hex string (66 characters total). The 0x prefix is required in both requests and responses.",
"examples": [
"0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890"
]
},
"ErrorResponse": {
"type": "object",
"required": [
"code",
"message"
],
"properties": {
"code": {
"type": "integer",
"description": "HTTP status code."
},
"message": {
"type": "string",
"description": "Human-readable error message."
}
},
"description": "Standard error response returned by all endpoints on failure."
},
"ProofCompleteEvent": {
"type": "object",
"required": [
"new_payload_request_root",
"proof_type"
],
"properties": {
"new_payload_request_root": {
"$ref": "#/components/schemas/Hash256"
},
"proof_type": {
"$ref": "#/components/schemas/ProofType"
}
},
"description": "SSE event payload for `proof_complete`. The proof can be downloaded at `/v1/execution_proofs/{new_payload_request_root}/{proof_type}`."
},
"ProofFailureEvent": {
"type": "object",
"required": [
"new_payload_request_root",
"proof_type",
"reason",
"error"
],
"properties": {
"new_payload_request_root": {
"$ref": "#/components/schemas/Hash256"
},
"proof_type": {
"$ref": "#/components/schemas/ProofType"
},
"reason": {
"$ref": "#/components/schemas/FailureReason"
},
"error": {
"type": "string",
"description": "Human-readable error message with details about the failure."
}
},
"description": "SSE event payload for `proof_failure`."
},
"FailureReason": {
"type": "string",
"enum": [
"witness_timeout",
"proving_timeout",
"proving_error",
"internal_error"
],
"description": "Reason a proof request failed. witness_timeout: witness fetch timed out. proving_timeout: proof generation timed out. proving_error: a general error occurred during proving. internal_error: an internal error occurred."
},
"ProofVerificationBody": {
"type": "object",
"required": [
"fork",
"new_payload_request_root",
"chain_config",
"proof_type",
"proof"
],
"properties": {
"fork": {
"$ref": "#/components/schemas/ProtocolFork"
},
"new_payload_request_root": {
"$ref": "#/components/schemas/Hash256"
},
"chain_config": {
"$ref": "#/components/schemas/ChainConfig"
},
"proof_type": {
"$ref": "#/components/schemas/ProofType"
},
"proof": {
"type": "string",
"format": "binary",
"description": "The proof bytes to verify."
}
},
"description": "Logical field layout of the body for POST /v1/execution_proof_verifications. The wire format is SSZ (application/octet-stream), not JSON."
},
"ProofVerificationResponse": {
"type": "object",
"required": [
"status"
],
"properties": {
"status": {
"$ref": "#/components/schemas/ProofStatus"
}
},
"description": "Response for a proof verification request."
},
"ProofStatus": {
"type": "string",
"enum": [
"VALID",
"INVALID"
],
"description": "Verification result. VALID means the proof passed verification. INVALID means verification ran but the proof did not pass."
},
"ProofTypesResponse": {
"type": "object",
"required": [
"proof_types"
],
"properties": {
"proof_types": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ProofTypeInfo"
},
"description": "List of initialized proof types, sorted by proof_type."
}
},
"description": "Response for GET /v1/proof_types."
},
"ProofTypeInfo": {
"type": "object",
"required": [
"proof_type",
"kind",
"can_prove",
"can_verify"
],
"properties": {
"proof_type": {
"$ref": "#/components/schemas/ProofType"
},
"kind": {
"$ref": "#/components/schemas/BackendKind"
},
"can_prove": {
"type": "boolean",
"description": "Whether this backend can generate proofs."
},
"can_verify": {
"type": "boolean",
"description": "Whether this backend can verify proofs."
}
},
"description": "Information about a single initialized proof type."
},
"BackendKind": {
"type": "string",
"enum": [
"ere",
"mock",
"verifier"
],
"description": "Backend kind for a zkVM instance. ere: remote ere-server backend. mock: in-process mock backend for testing. verifier: in-process verifier-only backend (cannot prove)."
}
}
}
}