Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support BSP export for EIP-4844 blob tx (Ethereum Migration v1.5) #244

Merged
merged 32 commits into from
Apr 24, 2024
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
5533fae
support bsp export for eip-4844 blob tx
noslav Mar 12, 2024
c52e6d0
go mod tidy
noslav Mar 13, 2024
927bc5a
merge dencun support related bsp-agent updates
noslav Mar 26, 2024
7852463
wrap and unwrap avro union types for blob txs
noslav Mar 26, 2024
79e936a
compose avro lens path support for blob tx fields
noslav Mar 26, 2024
16b0489
fix types for blob txs
noslav Mar 26, 2024
f38d2ff
update codec with blob sidecar
noslav Mar 26, 2024
328697d
add null avro union type for blob sidecar
noslav Mar 26, 2024
f7b54dc
fix blobFeeCap type
noslav Mar 26, 2024
8c9c4f0
omit empty blob sidecars
noslav Mar 26, 2024
a4fe1ad
revert back to optional
noslav Mar 26, 2024
bd51e84
fix blobFeeCap type lens path
noslav Mar 26, 2024
c715768
update codec with blob sidecar array
noslav Mar 27, 2024
8e77ac4
remove sidecar null components
noslav Mar 27, 2024
c3d37ba
remove avro wrapping for internal blob values
noslav Mar 27, 2024
f78acef
update codec
noslav Mar 27, 2024
b0699c1
move blob side cars to replica head
noslav Mar 27, 2024
d5677da
capture fields and path correctly on export
noslav Mar 28, 2024
3611892
fix type on blobTxSidecars codec
noslav Mar 28, 2024
b6f4fde
fix type fields for blobTxSidecars bytes
noslav Mar 28, 2024
fc3e065
go fmt
noslav Mar 28, 2024
dd553c9
bump bsp-agent minor version
noslav Apr 24, 2024
440d1bf
enable extractor scripts to export BlobSideCars
noslav Apr 24, 2024
90aecc4
disable staticcheck for now
noslav Apr 24, 2024
2323d71
linter recom fixes on comments and spacing
noslav Apr 24, 2024
57042ca
linter recom fixes on redacted/expired libraries
noslav Apr 24, 2024
e3b6a40
linter recom fixes for scripts redacted/expired libraries
noslav Apr 24, 2024
ec26834
remove abandoned linters
noslav Apr 24, 2024
da6b01b
match linter to go version local
noslav Apr 24, 2024
f8a850c
amend linter workflow
noslav Apr 24, 2024
ca48f58
update redis backup file
noslav Apr 24, 2024
560330d
insert correct replication queue naming
noslav Apr 24, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix type fields for blobTxSidecars bytes
Signed-off-by: Pranay Valson <pranay.valson@gmail.com>
  • Loading branch information
noslav committed Mar 28, 2024
commit b6f4fde4c0eb75203178a1639b8844b9a5590ba6
27 changes: 12 additions & 15 deletions codec/block-ethereum.avsc
Original file line number Diff line number Diff line change
@@ -588,27 +588,24 @@
"fields":[
{
"name":"Blobs",
"type":[
"null",
"string"
],
"default":"null"
"type":{
"type":"array",
"items":"bytes"
}
},
{
"name":"Commitments",
"type":[
"null",
"string"
],
"default":"null"
"type":{
"type":"array",
"items":"bytes"
}
},
{
"name":"Proofs",
"type":[
"null",
"string"
],
"default":"null"
"type":{
"type":"array",
"items":"bytes"
}
}
]
}
Loading