Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
53 changes: 53 additions & 0 deletions Cargo.lock

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

5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ members = [
"boot_node",
"common/account_utils",
"common/axum_utils",
"common/builder_types",
"common/clap_utils",
"common/deposit_contract",
"common/directory",
Expand Down Expand Up @@ -76,6 +77,7 @@ members = [
"testing/web3signer_tests",
"validator_client",
"validator_client/beacon_node_fallback",
"validator_client/builder_store",
"validator_client/doppelganger_service",
"validator_client/graffiti_file",
"validator_client/http_api",
Expand Down Expand Up @@ -117,6 +119,9 @@ beacon_processor = { path = "beacon_node/beacon_processor" }
bincode = "1"
bitvec = "1"
bls = { path = "crypto/bls" }
builder_client = { path = "beacon_node/builder_client" }
builder_store = { path = "validator_client/builder_store" }
builder_types = { path = "common/builder_types" }
byteorder = "1"
bytes = "1.11.1"
cargo_metadata = "0.19"
Expand Down
1 change: 1 addition & 0 deletions beacon_node/beacon_chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ alloy-primitives = { workspace = true }
arbitrary = { workspace = true, optional = true }
bitvec = { workspace = true }
bls = { workspace = true }
builder_client = { workspace = true }
educe = { workspace = true }
eth2 = { workspace = true, features = ["lighthouse", "network"] }
eth2_network_config = { workspace = true }
Expand Down
4 changes: 4 additions & 0 deletions beacon_node/beacon_chain/src/beacon_chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ use crate::{
CachedHead, metrics,
};
use bls::{PublicKey, PublicKeyBytes, Signature};
use builder_client::Builders;
use eth2::beacon_response::ForkVersionedResponse;
use eth2::types::{
EventKind, PtcDuty, SseBlobSidecar, SseBlock, SseDataColumnSidecar,
Expand Down Expand Up @@ -450,6 +451,9 @@ pub struct BeaconChain<T: BeaconChainTypes> {
Mutex<ObservedOperations<SignedBlsToExecutionChange, T::EthSpec>>,
/// Interfaces with the execution client.
pub execution_layer: Option<ExecutionLayer<T::EthSpec>>,
/// Orchestrates direct builder bid requests and preference submissions over the Gloas Builder
/// API. Present only when the Gloas fork is scheduled.
pub builders: Option<Arc<Builders>>,
/// Stores information about the canonical head and finalized/justified checkpoints of the
/// chain. Also contains the fork choice struct, for computing the canonical head.
pub canonical_head: CanonicalHead<T>,
Expand Down
Loading
Loading