Skip to content

Commit

Permalink
Merge pull request #199 from covalenthq/feature/blob-codec0.37-data
Browse files Browse the repository at this point in the history
Enable extraction and proofing of complete blobs (EIP-4844) sidecar data
  • Loading branch information
noslav authored Apr 23, 2024
2 parents 1735847 + c7f4735 commit bcbde6a
Show file tree
Hide file tree
Showing 5 changed files with 42,432 additions and 1 deletion.
70 changes: 69 additions & 1 deletion priv/schemas/block-ethereum.avsc
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,37 @@
{
"name":"input",
"type":"string"
},
{
"name":"blobFeeCap",
"type":[
"null",
{
"type":"bytes",
"logicalType":"decimal",
"precision":1000
}
],
"default":"null"
},
{
"name":"blobHashes",
"type":[
"null",
{
"type":"array",
"items":"string"
}
],
"default":"null"
},
{
"name":"blobGas",
"type":[
"null",
"int"
],
"default":"null"
}
]
}
Expand Down Expand Up @@ -544,6 +575,43 @@
}
],
"default":"null"
},
{
"name":"BlobTxSidecars",
"type":[
"null",
{
"type":"array",
"items":{
"name":"BlobTxSidecars_record",
"type":"record",
"fields":[
{
"name":"Blobs",
"type":{
"type":"array",
"items":"bytes"
}
},
{
"name":"Commitments",
"type":{
"type":"array",
"items":"bytes"
}
},
{
"name":"Proofs",
"type":{
"type":"array",
"items":"bytes"
}
}
]
}
}
],
"default":"null"
}
]
}
Expand All @@ -567,7 +635,7 @@
{
"name":"codecVersion",
"type":"double",
"default":0.36
"default":0.37
}
]
}
Loading

0 comments on commit bcbde6a

Please sign in to comment.