Skip to content

Commit

Permalink
perf(engine): optimize execution engine calls (#1195)
Browse files Browse the repository at this point in the history
* bet

* bet

* bet

* bet

* bet

* bet

* bet
  • Loading branch information
itsdevbear authored May 27, 2024
1 parent a3e21bb commit c8a0f7c
Show file tree
Hide file tree
Showing 77 changed files with 107 additions and 103 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ COPY ./beacond/go.mod ./beacond/go.sum ./beacond/
COPY ./mod/beacon/go.mod ./mod/beacon/go.sum ./mod/beacon/
COPY ./mod/consensus-types/go.mod ./mod/consensus-types/go.sum ./mod/consensus-types/
COPY ./mod/da/go.mod ./mod/da/go.sum ./mod/da/
COPY ./mod/engine-primitives/go.mod ./mod/engine-primitives/go.sum ./mod/engine-primitives/
COPY ./mod/execution/go.mod ./mod/execution/go.sum ./mod/execution/
COPY ./mod/log/go.mod ./mod/log/
COPY ./mod/node-api/go.mod ./mod/node-api/go.sum ./mod/node-api/
COPY ./mod/node-builder/go.mod ./mod/node-builder/go.sum ./mod/node-builder/
COPY ./mod/p2p/go.mod ./mod/p2p/
COPY ./mod/payload/go.mod ./mod/payload/go.sum ./mod/payload/
COPY ./mod/primitives/go.mod ./mod/primitives/go.sum ./mod/primitives/
COPY ./mod/primitives-engine/go.mod ./mod/primitives-engine/go.sum ./mod/primitives-engine/
COPY ./mod/runtime/go.mod ./mod/runtime/go.sum ./mod/runtime/
COPY ./mod/state-transition/go.mod ./mod/state-transition/go.sum ./mod/state-transition/
COPY ./mod/storage/go.mod ./mod/storage/go.sum ./mod/storage/
Expand All @@ -74,7 +74,7 @@ RUN go work use ./mod/node-builder
RUN go work use ./mod/p2p
RUN go work use ./mod/payload
RUN go work use ./mod/primitives
RUN go work use ./mod/primitives-engine
RUN go work use ./mod/engine-primitives
RUN go work use ./mod/runtime
RUN go work use ./mod/state-transition
RUN go work use ./mod/storage
Expand Down
4 changes: 2 additions & 2 deletions beacond/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ replace (
github.com/berachain/beacon-kit/mod/beacon => ../mod/beacon
github.com/berachain/beacon-kit/mod/consensus-types => ../mod/consensus-types
github.com/berachain/beacon-kit/mod/da => ../mod/da
github.com/berachain/beacon-kit/mod/engine-primitives => ../mod/engine-primitives
github.com/berachain/beacon-kit/mod/errors => ../mod/errors
github.com/berachain/beacon-kit/mod/execution => ../mod/execution
github.com/berachain/beacon-kit/mod/log => ../mod/log
github.com/berachain/beacon-kit/mod/node-builder => ../mod/node-builder
github.com/berachain/beacon-kit/mod/p2p => ../mod/p2p
github.com/berachain/beacon-kit/mod/payload => ../mod/payload
github.com/berachain/beacon-kit/mod/primitives => ../mod/primitives
github.com/berachain/beacon-kit/mod/primitives-engine => ../mod/primitives-engine
github.com/berachain/beacon-kit/mod/runtime => ../mod/runtime
github.com/berachain/beacon-kit/mod/state-transition => ../mod/state-transition
github.com/berachain/beacon-kit/mod/storage => ../mod/storage
Expand Down Expand Up @@ -67,13 +67,13 @@ require (
github.com/berachain/beacon-kit/mod/beacon v0.0.0-00010101000000-000000000000 // indirect
github.com/berachain/beacon-kit/mod/consensus-types v0.0.0-20240508035017-2fb637ea5f0a // indirect
github.com/berachain/beacon-kit/mod/da v0.0.0-20240515154823-9321cabc0e88 // indirect
github.com/berachain/beacon-kit/mod/engine-primitives v0.0.0-20240511193312-dee73d6774a7 // indirect
github.com/berachain/beacon-kit/mod/errors v0.0.0-20240508035017-2fb637ea5f0a // indirect
github.com/berachain/beacon-kit/mod/execution v0.0.0-00010101000000-000000000000 // indirect
github.com/berachain/beacon-kit/mod/log v0.0.0-20240508035017-2fb637ea5f0a // indirect
github.com/berachain/beacon-kit/mod/p2p v0.0.0-00010101000000-000000000000 // indirect
github.com/berachain/beacon-kit/mod/payload v0.0.0-00010101000000-000000000000 // indirect
github.com/berachain/beacon-kit/mod/primitives v0.0.0-20240508035017-2fb637ea5f0a // indirect
github.com/berachain/beacon-kit/mod/primitives-engine v0.0.0-20240511193312-dee73d6774a7 // indirect
github.com/berachain/beacon-kit/mod/runtime v0.0.0-00010101000000-000000000000 // indirect
github.com/berachain/beacon-kit/mod/state-transition v0.0.0-20240518141702-8e558f01aa38 // indirect
github.com/berachain/beacon-kit/mod/storage v0.0.0-20240515154823-9321cabc0e88 // indirect
Expand Down
2 changes: 1 addition & 1 deletion go.work
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ use (
./mod/beacon
./mod/consensus-types
./mod/da
./mod/engine-primitives
./mod/errors
./mod/execution
./mod/log
Expand All @@ -14,7 +15,6 @@ use (
./mod/p2p
./mod/payload
./mod/primitives
./mod/primitives-engine
./mod/runtime
./mod/state-transition
./mod/storage
Expand Down
2 changes: 1 addition & 1 deletion mod/beacon/blockchain/execution_engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
"time"

"github.com/berachain/beacon-kit/mod/consensus-types/pkg/types"
engineprimitives "github.com/berachain/beacon-kit/mod/primitives-engine"
engineprimitives "github.com/berachain/beacon-kit/mod/engine-primitives/pkg/engine-primitives"
"github.com/berachain/beacon-kit/mod/primitives/pkg/common"
"github.com/berachain/beacon-kit/mod/primitives/pkg/math"
)
Expand Down
2 changes: 1 addition & 1 deletion mod/beacon/blockchain/process.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (

"github.com/berachain/beacon-kit/mod/consensus-types/pkg/genesis"
"github.com/berachain/beacon-kit/mod/consensus-types/pkg/types"
engineprimitives "github.com/berachain/beacon-kit/mod/primitives-engine"
engineprimitives "github.com/berachain/beacon-kit/mod/engine-primitives/pkg/engine-primitives"
"github.com/berachain/beacon-kit/mod/primitives/pkg/math"
"github.com/berachain/beacon-kit/mod/primitives/pkg/transition"
"golang.org/x/sync/errgroup"
Expand Down
2 changes: 1 addition & 1 deletion mod/beacon/blockchain/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ import (
"time"

"github.com/berachain/beacon-kit/mod/consensus-types/pkg/types"
engineprimitives "github.com/berachain/beacon-kit/mod/engine-primitives/pkg/engine-primitives"
"github.com/berachain/beacon-kit/mod/primitives"
engineprimitives "github.com/berachain/beacon-kit/mod/primitives-engine"
"github.com/berachain/beacon-kit/mod/primitives/pkg/common"
"github.com/berachain/beacon-kit/mod/primitives/pkg/crypto"
"github.com/berachain/beacon-kit/mod/primitives/pkg/math"
Expand Down
4 changes: 2 additions & 2 deletions mod/beacon/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ go 1.22.3

replace (
github.com/berachain/beacon-kit/mod/consensus-types => ../consensus-types
github.com/berachain/beacon-kit/mod/engine-primitives => ../engine-primitives
github.com/berachain/beacon-kit/mod/errors => ../errors
github.com/berachain/beacon-kit/mod/log => ../log
github.com/berachain/beacon-kit/mod/primitives => ../primitives
github.com/berachain/beacon-kit/mod/primitives-engine => ../primitives-engine
)

require (
github.com/berachain/beacon-kit/mod/consensus-types v0.0.0-20240508035017-2fb637ea5f0a
github.com/berachain/beacon-kit/mod/engine-primitives v0.0.0-20240508035017-2fb637ea5f0a
github.com/berachain/beacon-kit/mod/errors v0.0.0-20240508035017-2fb637ea5f0a
github.com/berachain/beacon-kit/mod/log v0.0.0-20240508035017-2fb637ea5f0a
github.com/berachain/beacon-kit/mod/primitives v0.0.0-20240508035017-2fb637ea5f0a
github.com/berachain/beacon-kit/mod/primitives-engine v0.0.0-20240508035017-2fb637ea5f0a
github.com/ferranbt/fastssz v0.1.4-0.20240422063434-a4db75388da1
golang.org/x/sync v0.7.0
)
Expand Down
2 changes: 1 addition & 1 deletion mod/beacon/validator/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ import (
"context"

"github.com/berachain/beacon-kit/mod/consensus-types/pkg/types"
engineprimitives "github.com/berachain/beacon-kit/mod/engine-primitives/pkg/engine-primitives"
"github.com/berachain/beacon-kit/mod/errors"
engineprimitives "github.com/berachain/beacon-kit/mod/primitives-engine"
"github.com/berachain/beacon-kit/mod/primitives/pkg/math"
)

Expand Down
2 changes: 1 addition & 1 deletion mod/beacon/validator/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ import (
"context"

"github.com/berachain/beacon-kit/mod/consensus-types/pkg/types"
engineprimitives "github.com/berachain/beacon-kit/mod/engine-primitives/pkg/engine-primitives"
"github.com/berachain/beacon-kit/mod/primitives"
engineprimitives "github.com/berachain/beacon-kit/mod/primitives-engine"
"github.com/berachain/beacon-kit/mod/primitives/pkg/common"
"github.com/berachain/beacon-kit/mod/primitives/pkg/crypto"
"github.com/berachain/beacon-kit/mod/primitives/pkg/math"
Expand Down
4 changes: 2 additions & 2 deletions mod/consensus-types/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ module github.com/berachain/beacon-kit/mod/consensus-types
go 1.22.3

replace (
github.com/berachain/beacon-kit/mod/engine-primitives => ../engine-primitives
github.com/berachain/beacon-kit/mod/errors => ../errors
github.com/berachain/beacon-kit/mod/primitives => ../primitives
github.com/berachain/beacon-kit/mod/primitives-engine => ../primitives-engine
)

require (
github.com/berachain/beacon-kit/mod/engine-primitives v0.0.0-00010101000000-000000000000
github.com/berachain/beacon-kit/mod/errors v0.0.0-00010101000000-000000000000
github.com/berachain/beacon-kit/mod/primitives v0.0.0-20240429161625-c105cec3420c
github.com/berachain/beacon-kit/mod/primitives-engine v0.0.0-00010101000000-000000000000
github.com/ethereum/go-ethereum v1.14.3
github.com/ferranbt/fastssz v0.1.4-0.20240422063434-a4db75388da1
github.com/stretchr/testify v1.9.0
Expand Down
2 changes: 1 addition & 1 deletion mod/consensus-types/pkg/genesis/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ import (
"math/big"

"github.com/berachain/beacon-kit/mod/consensus-types/pkg/types"
engineprimitives "github.com/berachain/beacon-kit/mod/engine-primitives/pkg/engine-primitives"
"github.com/berachain/beacon-kit/mod/primitives"
engineprimitives "github.com/berachain/beacon-kit/mod/primitives-engine"
"github.com/berachain/beacon-kit/mod/primitives/pkg/common"
"github.com/berachain/beacon-kit/mod/primitives/pkg/constants"
"github.com/berachain/beacon-kit/mod/primitives/pkg/math"
Expand Down
2 changes: 1 addition & 1 deletion mod/consensus-types/pkg/state/deneb/deneb.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import (
"github.com/berachain/beacon-kit/mod/primitives/pkg/math"
)

//go:generate go run github.com/ferranbt/fastssz/sszgen -path deneb.go -objs BeaconState -include ../../../../primitives/pkg/crypto,../../../../primitives/pkg/common,../../../../primitives/pkg/bytes,../../../../primitives/mod.go,../../../../consensus-types/pkg/types,../../../../primitives-engine,../../../../primitives/mod.go,../../../../primitives/pkg/math,$GETH_PKG_INCLUDE/common,$GETH_PKG_INCLUDE/common/hexutil -output deneb.ssz.go
//go:generate go run github.com/ferranbt/fastssz/sszgen -path deneb.go -objs BeaconState -include ../../../../primitives/pkg/crypto,../../../../primitives/pkg/common,../../../../primitives/pkg/bytes,../../../../primitives/mod.go,../../../../consensus-types/pkg/types,../../../../engine-primitives/pkg/engine-primitives,../../../../primitives/mod.go,../../../../primitives/pkg/math,$GETH_PKG_INCLUDE/common,$GETH_PKG_INCLUDE/common/hexutil -output deneb.ssz.go
//nolint:lll // various json tags.
type BeaconState struct {
// Versioning
Expand Down
2 changes: 1 addition & 1 deletion mod/consensus-types/pkg/state/deneb/deneb.ssz.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mod/consensus-types/pkg/types/block.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func BeaconBlockFromSSZ(
// BeaconBlockDeneb represents a block in the beacon chain during
// the Deneb fork.
//
//go:generate go run github.com/ferranbt/fastssz/sszgen --path block.go -objs BeaconBlockDeneb -include ../../../primitives/pkg/common,../../../primitives/pkg/crypto,../../../primitives/pkg/math,..,./header.go,./withdrawal_credentials.go,../../../primitives-engine/withdrawal.go,./deposit.go,./payload.go,./deposit.go,../../../primitives/pkg/eip4844,../../../primitives/pkg/bytes,./eth1data.go,../../../primitives/pkg/math,../../../primitives/pkg/common,./body.go,$GETH_PKG_INCLUDE/common,$GETH_PKG_INCLUDE/common/hexutil -output block.ssz.go
//go:generate go run github.com/ferranbt/fastssz/sszgen --path block.go -objs BeaconBlockDeneb -include ../../../primitives/pkg/common,../../../primitives/pkg/crypto,../../../primitives/pkg/math,..,./header.go,./withdrawal_credentials.go,../../../engine-primitives/pkg/engine-primitives/withdrawal.go,./deposit.go,./payload.go,./deposit.go,../../../primitives/pkg/eip4844,../../../primitives/pkg/bytes,./eth1data.go,../../../primitives/pkg/math,../../../primitives/pkg/common,./body.go,$GETH_PKG_INCLUDE/common,$GETH_PKG_INCLUDE/common/hexutil -output block.ssz.go
type BeaconBlockDeneb struct {
// BeaconBlockHeaderBase is the base of the BeaconBlockDeneb.
BeaconBlockHeaderBase
Expand Down
2 changes: 1 addition & 1 deletion mod/consensus-types/pkg/types/block.ssz.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions mod/consensus-types/pkg/types/body.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
package types

import (
engineprimitives "github.com/berachain/beacon-kit/mod/engine-primitives/pkg/engine-primitives"
"github.com/berachain/beacon-kit/mod/errors"
engineprimitives "github.com/berachain/beacon-kit/mod/primitives-engine"
"github.com/berachain/beacon-kit/mod/primitives/pkg/bytes"
"github.com/berachain/beacon-kit/mod/primitives/pkg/common"
"github.com/berachain/beacon-kit/mod/primitives/pkg/crypto"
Expand Down Expand Up @@ -117,7 +117,7 @@ func (b *BeaconBlockBodyBase) SetDeposits(deposits []*Deposit) {
// BeaconBlockBodyDeneb represents the body of a beacon block in the Deneb
// chain.
//
//go:generate go run github.com/ferranbt/fastssz/sszgen --path ./body.go -objs BeaconBlockBodyDeneb -include ../../../primitives/pkg/crypto,./payload.go,../../../primitives/pkg/eip4844,../../../primitives/pkg/bytes,./eth1data.go,../../../primitives/pkg/math,../../../primitives/pkg/common,./deposit.go,../../../primitives-engine/withdrawal.go,./withdrawal_credentials.go,$GETH_PKG_INCLUDE/common,$GETH_PKG_INCLUDE/common/hexutil -output body.ssz.go
//go:generate go run github.com/ferranbt/fastssz/sszgen --path ./body.go -objs BeaconBlockBodyDeneb -include ../../../primitives/pkg/crypto,./payload.go,../../../primitives/pkg/eip4844,../../../primitives/pkg/bytes,./eth1data.go,../../../primitives/pkg/math,../../../primitives/pkg/common,./deposit.go,../../../engine-primitives/pkg/engine-primitives/withdrawal.go,./withdrawal_credentials.go,$GETH_PKG_INCLUDE/common,$GETH_PKG_INCLUDE/common/hexutil -output body.ssz.go
type BeaconBlockBodyDeneb struct {
BeaconBlockBodyBase
// ExecutionPayload is the execution payload of the body.
Expand Down
2 changes: 1 addition & 1 deletion mod/consensus-types/pkg/types/body.ssz.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mod/consensus-types/pkg/types/deposit.ssz.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mod/consensus-types/pkg/types/deposit_message.ssz.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mod/consensus-types/pkg/types/fork_data.ssz.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mod/consensus-types/pkg/types/interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
package types

import (
engineprimitives "github.com/berachain/beacon-kit/mod/primitives-engine"
engineprimitives "github.com/berachain/beacon-kit/mod/engine-primitives/pkg/engine-primitives"
"github.com/berachain/beacon-kit/mod/primitives/pkg/bytes"
"github.com/berachain/beacon-kit/mod/primitives/pkg/common"
"github.com/berachain/beacon-kit/mod/primitives/pkg/crypto"
Expand Down
4 changes: 2 additions & 2 deletions mod/consensus-types/pkg/types/payload.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
package types

import (
engineprimitives "github.com/berachain/beacon-kit/mod/primitives-engine"
engineprimitives "github.com/berachain/beacon-kit/mod/engine-primitives/pkg/engine-primitives"
"github.com/berachain/beacon-kit/mod/primitives/pkg/bytes"
"github.com/berachain/beacon-kit/mod/primitives/pkg/common"
"github.com/berachain/beacon-kit/mod/primitives/pkg/math"
Expand All @@ -37,7 +37,7 @@ var _ engineprimitives.ExecutionPayload = (*ExecutableDataDeneb)(nil)

// ExecutableDataDeneb is the execution payload for Deneb.
//
//go:generate go run github.com/ferranbt/fastssz/sszgen -path payload.go -objs ExecutableDataDeneb -include ../../../primitives/pkg/common,../../../primitives/pkg/bytes,../../../primitives-engine/withdrawal.go,../../../primitives/pkg/common,../../../primitives/pkg/math,../../../primitives/pkg/bytes,$GETH_PKG_INCLUDE/common,$GETH_PKG_INCLUDE/common/hexutil,$GOPATH/pkg/mod/github.com/holiman/uint256@v1.2.4 -output payload.ssz.go
//go:generate go run github.com/ferranbt/fastssz/sszgen -path payload.go -objs ExecutableDataDeneb -include ../../../primitives/pkg/common,../../../primitives/pkg/bytes,../../../engine-primitives/pkg/engine-primitives/withdrawal.go,../../../primitives/pkg/common,../../../primitives/pkg/math,../../../primitives/pkg/bytes,$GETH_PKG_INCLUDE/common,$GETH_PKG_INCLUDE/common/hexutil,$GOPATH/pkg/mod/github.com/holiman/uint256@v1.2.4 -output payload.ssz.go
//go:generate go run github.com/fjl/gencodec -type ExecutableDataDeneb -field-override executableDataDenebMarshaling -out payload.json.go
//nolint:lll
type ExecutableDataDeneb struct {
Expand Down
2 changes: 1 addition & 1 deletion mod/consensus-types/pkg/types/payload.json.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions mod/consensus-types/pkg/types/payload.ssz.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mod/consensus-types/pkg/types/payload_header.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
package types

import (
engineprimitives "github.com/berachain/beacon-kit/mod/engine-primitives/pkg/engine-primitives"
"github.com/berachain/beacon-kit/mod/primitives"
engineprimitives "github.com/berachain/beacon-kit/mod/primitives-engine"
"github.com/berachain/beacon-kit/mod/primitives/pkg/bytes"
"github.com/berachain/beacon-kit/mod/primitives/pkg/common"
"github.com/berachain/beacon-kit/mod/primitives/pkg/math"
Expand Down
2 changes: 1 addition & 1 deletion mod/consensus-types/pkg/types/payload_header.ssz.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mod/consensus-types/pkg/types/validator.ssz.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions mod/da/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ go 1.22.3

replace (
github.com/berachain/beacon-kit/mod/consensus-types => ../consensus-types
github.com/berachain/beacon-kit/mod/engine-primitives => ../engine-primitives
github.com/berachain/beacon-kit/mod/errors => ../errors
github.com/berachain/beacon-kit/mod/log => ../log
github.com/berachain/beacon-kit/mod/primitives => ../primitives
github.com/berachain/beacon-kit/mod/primitives-engine => ../primitives-engine
)

require (
github.com/berachain/beacon-kit/mod/consensus-types v0.0.0-20240508035017-2fb637ea5f0a
github.com/berachain/beacon-kit/mod/engine-primitives v0.0.0-20240508035017-2fb637ea5f0a
github.com/berachain/beacon-kit/mod/errors v0.0.0-20240508035017-2fb637ea5f0a
github.com/berachain/beacon-kit/mod/log v0.0.0-20240508035017-2fb637ea5f0a
github.com/berachain/beacon-kit/mod/primitives v0.0.0-20240508035017-2fb637ea5f0a
github.com/berachain/beacon-kit/mod/primitives-engine v0.0.0-20240508035017-2fb637ea5f0a
github.com/crate-crypto/go-kzg-4844 v1.0.0
github.com/ethereum/c-kzg-4844 v1.0.1
github.com/ferranbt/fastssz v0.1.4-0.20240422063434-a4db75388da1
Expand Down
2 changes: 1 addition & 1 deletion mod/da/pkg/blob/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"time"

"github.com/berachain/beacon-kit/mod/da/pkg/types"
engineprimitives "github.com/berachain/beacon-kit/mod/primitives-engine"
engineprimitives "github.com/berachain/beacon-kit/mod/engine-primitives/pkg/engine-primitives"
"github.com/berachain/beacon-kit/mod/primitives/pkg/math"
"github.com/berachain/beacon-kit/mod/primitives/pkg/merkle"
"golang.org/x/sync/errgroup"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/berachain/beacon-kit/mod/primitives-engine
module github.com/berachain/beacon-kit/mod/engine-primitives

go 1.22.3

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"encoding/json"
"testing"

engineprimitives "github.com/berachain/beacon-kit/mod/primitives-engine"
engineprimitives "github.com/berachain/beacon-kit/mod/engine-primitives/pkg/engine-primitives"
"github.com/berachain/beacon-kit/mod/primitives/pkg/common"
"github.com/stretchr/testify/require"
)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit c8a0f7c

Please sign in to comment.