Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0ba527f
add: add cell kzg functions
healthykim Sep 4, 2025
da8a204
fix: fix errors in cell level kzg functions
healthykim Sep 4, 2025
86df16d
add: validation logic with new type BlobTxCellSidecar
healthykim Sep 4, 2025
d35d52b
add: implement pooledTx type
healthykim Sep 8, 2025
435ad70
fix: remove proof computations in the recoverCells function
healthykim Sep 11, 2025
61c55eb
add: remove parity cells before storing blobs to the blobpool
healthykim Sep 11, 2025
6cdba21
fix: fix tx size
healthykim Sep 11, 2025
1618190
fix: fix test error
healthykim Sep 11, 2025
46084fc
chore: remove redundant code
healthykim Sep 11, 2025
987582b
fix: modify removeParity function
healthykim Sep 11, 2025
fee66bf
fix: edit lint error
healthykim Sep 11, 2025
cfee930
fix: fix go mod to reference crate-crypto/go-eth-kzg
healthykim Sep 16, 2025
de9182f
fix: fix test error
healthykim Sep 16, 2025
c19ff02
chore: remove redundant file
healthykim Sep 16, 2025
da083cd
chore: simplify removeParity
healthykim Sep 17, 2025
84d988c
Merge branch 'master' into bs/cell-blobpool/ver-1
healthykim Sep 17, 2025
40b2a90
fix: fix the blobViolation test error
healthykim Sep 18, 2025
60f0850
fix: polish
healthykim Oct 23, 2025
866c823
feat: perform conversion in Init()
healthykim Oct 24, 2025
c8e5daf
Merge branch 'master' into bs/cell-blobpool/ver-1
healthykim Oct 24, 2025
df81462
fix: fix test error
healthykim Oct 24, 2025
296e83d
fix: fix partial lint error
healthykim Oct 24, 2025
7df7f3b
fix: remove go.work.sum
healthykim Oct 24, 2025
9d4388f
fix: no lint no life
healthykim Oct 24, 2025
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
2 changes: 1 addition & 1 deletion cmd/devp2p/internal/ethtest/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ func (s *Suite) EthTests() []utesting.Test {
{Name: "Transaction", Fn: s.TestTransaction},
{Name: "InvalidTxs", Fn: s.TestInvalidTxs},
{Name: "NewPooledTxs", Fn: s.TestNewPooledTxs},
{Name: "BlobViolations", Fn: s.TestBlobViolations},
{Name: "TestBlobTxWithoutSidecar", Fn: s.TestBlobTxWithoutSidecar},
{Name: "TestBlobTxWithMismatchedSidecar", Fn: s.TestBlobTxWithMismatchedSidecar},
{Name: "BlobViolations", Fn: s.TestBlobViolations},
}
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/keeper/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ require (
github.com/bits-and-blooms/bitset v1.20.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/consensys/gnark-crypto v0.18.0 // indirect
github.com/crate-crypto/go-eth-kzg v1.4.0 // indirect
github.com/crate-crypto/go-eth-kzg v1.3.1-0.20250915203452-9a5758b0a45d // indirect
github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a // indirect
github.com/deckarep/golang-set/v2 v2.6.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
Expand Down
4 changes: 2 additions & 2 deletions cmd/keeper/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 h1:zuQyyAK
github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06/go.mod h1:7nc4anLGjupUW/PeY5qiNYsdNXj7zopG+eqsS7To5IQ=
github.com/consensys/gnark-crypto v0.18.0 h1:vIye/FqI50VeAr0B3dx+YjeIvmc3LWz4yEfbWBpTUf0=
github.com/consensys/gnark-crypto v0.18.0/go.mod h1:L3mXGFTe1ZN+RSJ+CLjUt9x7PNdx8ubaYfDROyp2Z8c=
github.com/crate-crypto/go-eth-kzg v1.4.0 h1:WzDGjHk4gFg6YzV0rJOAsTK4z3Qkz5jd4RE3DAvPFkg=
github.com/crate-crypto/go-eth-kzg v1.4.0/go.mod h1:J9/u5sWfznSObptgfa92Jq8rTswn6ahQWEuiLHOjCUI=
github.com/crate-crypto/go-eth-kzg v1.3.1-0.20250915203452-9a5758b0a45d h1:OnwyGw+e6xkcjqJCpyQhIdlBoTK9vtMLdzYlxVLuo+I=
github.com/crate-crypto/go-eth-kzg v1.3.1-0.20250915203452-9a5758b0a45d/go.mod h1:J9/u5sWfznSObptgfa92Jq8rTswn6ahQWEuiLHOjCUI=
github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a h1:W8mUrRp6NOVl3J+MYp5kPMoUZPp7aOYHtaua31lwRHg=
github.com/crate-crypto/go-ipa v0.0.0-20240724233137-53bbb0ceb27a/go.mod h1:sTwzHBvIzm2RfVCGNEBZgRyjwK40bVoun3ZnGOCafNM=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
Expand Down
Loading