engine_getBlobsV2
Method
- JSON-RPC method name:
engine_getBlobsV2 - 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 corresponding cell proofs - Type:
object[]
Result schema
{
"type": "array",
"items": {
"title": "Blob and proof object V2",
"type": "object",
"required": [
"blob",
"proofs"
],
"properties": {
"blob": {
"title": "Blob",
"type": "string",
"pattern": "^0x[0-9a-f]*$"
},
"proofs": {
"title": "Cell Proofs",
"type": "array",
"items": {
"title": "48 hex encoded bytes",
"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.