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
go mod tidy
Signed-off-by: Pranay Valson <pranay.valson@gmail.com>
  • Loading branch information
noslav committed Mar 13, 2024
commit c52e6d0777ac44a37ebe5714f09347d8b102c1f3
7 changes: 2 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ require (

require (
cloud.google.com/go/bigquery v1.50.0 // indirect
github.com/VictoriaMetrics/fastcache v1.12.1 // indirect
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883 // indirect
github.com/apache/arrow/go/v7 v7.0.0 // indirect
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
@@ -36,11 +36,9 @@ require (
github.com/consensys/gnark-crypto v0.12.1 // indirect
github.com/crate-crypto/go-kzg-4844 v0.7.0 // indirect
github.com/deckarep/golang-set/v2 v2.1.0 // indirect
github.com/edsrzf/mmap-go v1.1.0 // indirect
github.com/ethereum/c-kzg-4844 v0.4.0 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/gofrs/uuid v3.3.0+incompatible // indirect
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
github.com/google/flatbuffers v2.0.8+incompatible // indirect
github.com/holiman/uint256 v1.2.4 // indirect
github.com/influxdata/flux v0.170.1 // indirect
@@ -58,6 +56,7 @@ require (
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
github.com/xlab/treeprint v1.0.0 // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect
gonum.org/v1/gonum v0.11.0 // indirect
rsc.io/tmplfunc v0.0.3 // indirect
)
@@ -73,7 +72,6 @@ require (
github.com/fatih/color v1.16.0
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/go-ole/go-ole v1.3.0 // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.3 // indirect
@@ -118,6 +116,5 @@ require (
golang.org/x/tools v0.15.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect
lukechampine.com/blake3 v1.1.6 // indirect
)
Loading
Loading