-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathopenapi.json
More file actions
399 lines (399 loc) · 18.2 KB
/
openapi.json
File metadata and controls
399 lines (399 loc) · 18.2 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
{
"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 NewPayloadRequest and enqueues proof generation for the specified proof types. Returns the tree-hash root computed from the submitted payload.",
"parameters": [
{
"name": "proof_types",
"in": "query",
"required": true,
"description": "Comma-separated list of proof types to generate. Must contain at least one valid value. Whitespace around commas is trimmed.",
"schema": {
"type": "string",
"examples": [
"reth-sp1",
"reth-sp1,ethrex-risc0"
]
}
}
],
"requestBody": {
"required": true,
"description": "SSZ-encoded NewPayloadRequest (transparent union across fork variants). The Content-Type header SHOULD be set to application/octet-stream, but the server does not enforce it.",
"content": {
"application/octet-stream": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"responses": {
"200": {
"description": "Proof request accepted.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProofRequestResponse"
}
}
}
},
"400": {
"description": "Invalid SSZ body, 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'"
}
},
"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 proof bytes 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.",
"parameters": [
{
"name": "new_payload_request_root",
"in": "query",
"required": true,
"description": "The tree hash root of the NewPayloadRequest the proof was generated for. The server passes this value to the zkVM verifier to check that the proof's public values match the expected payload root.",
"schema": {
"$ref": "#/components/schemas/Hash256"
}
},
{
"name": "proof_type",
"in": "query",
"required": true,
"description": "The proof type to verify.",
"schema": {
"$ref": "#/components/schemas/ProofType"
}
}
],
"requestBody": {
"required": true,
"description": "Raw proof bytes. The Content-Type header SHOULD be set to application/octet-stream, but the server does not enforce it.",
"content": {
"application/octet-stream": {
"schema": {
"type": "string",
"format": "binary"
}
}
}
},
"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"
}
}
}
}
}
},
"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"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"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"
]
},
"ProofType": {
"type": "string",
"enum": [
"ethrex-risc0",
"ethrex-sp1",
"ethrex-zisk",
"reth-openvm",
"reth-risc0",
"reth-sp1",
"reth-zisk"
],
"description": "Case-sensitive identifier for an EL/zkVM combination."
},
"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."
},
"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."
},
"ProofVerificationResponse": {
"type": "object",
"required": [
"status"
],
"properties": {
"status": {
"$ref": "#/components/schemas/ProofStatus"
}
},
"description": "Response for a proof verification request."
},
"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}`."
},
"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."
},
"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`."
}
}
}
}