engine_getBlobsV1
Method
- JSON-RPC method name:
engine_getBlobsV1 - JSON-RPC version:
2.0
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| Blob versioned hashes | string[] | yes |
Parameter schema
{
"Blob versioned hashes": {
"required": true,
"schema": {
"type": "array",
"items": {
"title": "32 byte hex value",
"type": "string",
"pattern": "^0x[0-9a-f]{64}$"
}
}
}
}
Result
- Name:
List of blobs and proofs - Type:
object[]
Result schema
{
"type": "array",
"items": {
"title": "Blob and proof object V1",
"type": "object",
"required": [
"blob",
"proof"
],
"properties": {
"blob": {
"title": "Blob",
"type": "string",
"pattern": "^0x[0-9a-f]*$"
},
"proof": {
"title": "proof",
"type": "string",
"pattern": "^0x[0-9a-f]{96}$"
}
}
}
}
Positional parameters
Parameter order:
Blob versioned hashes
Errors
This method may return JSON-RPC standard errors (e.g. -32600, -32601, -32602, -32603) as well as application-specific errors.
TODO: Document method-specific error codes and conditions.