Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
e10bbbf
Silence uninitialized warn on start-up
macladson May 7, 2025
080c819
Add debug log in uninitialized case
macladson May 8, 2025
8fa6105
Initial Context Deserialize
ethDreamer Apr 25, 2025
c38afa3
Bulk of the Changes
ethDreamer Apr 28, 2025
96725b4
Cleanup and Quality of Life
ethDreamer Apr 30, 2025
625a966
Fixed cargo sort
ethDreamer Apr 30, 2025
fda0af0
Fix cargo udeps
ethDreamer Apr 30, 2025
86adc9a
Fux Subtle Beacon API Bug
ethDreamer May 5, 2025
26644e4
Deleted Some Deserialize Impls
ethDreamer May 6, 2025
d348266
Fix dependency paths
ethDreamer May 8, 2025
a4e075a
IMPL EVERYWHERE
ethDreamer May 8, 2025
9ec6bfc
Fix PendingDeposits & PendingPartialWithdrawals
ethDreamer May 12, 2025
efdb243
Remove unnecessary Option from error
michaelsproul May 14, 2025
0a65f0f
Remove TODO
michaelsproul May 14, 2025
0c05a87
Simplify match on ForkName
michaelsproul May 14, 2025
4b6e9f2
Simplify SseExtendedPayloadAttributes helper
michaelsproul May 14, 2025
2ce2b28
UnVersioned -> Unversioned
michaelsproul May 14, 2025
14c3ce6
Simplify milhouse::List impl
michaelsproul May 14, 2025
a77874e
Add missing line break
michaelsproul May 14, 2025
01e3ffe
Address Some of Michael's Comments
ethDreamer May 16, 2025
6008895
Fixed Variable Length Deserialization
ethDreamer May 16, 2025
e1852a7
Add Tests for context_deserialize_derive
ethDreamer May 16, 2025
a3f7693
Fix Deserialize Beacon Blocks
ethDreamer May 16, 2025
1e9091b
Merge of #7372
mergify[bot] May 19, 2025
e0ed5a2
Merge of #7411
mergify[bot] May 19, 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
22 changes: 22 additions & 0 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ members = [
"common/warp_utils",
"common/workspace_members",

"consensus/context_deserialize",
"consensus/context_deserialize_derive",
"consensus/fixed_bytes",
"consensus/fork_choice",
"consensus/int_to_bytes",
Expand Down Expand Up @@ -127,6 +129,8 @@ clap = { version = "4.5.4", features = ["derive", "cargo", "wrap_help"] }
# feature ourselves when desired.
c-kzg = { version = "1", default-features = false }
compare_fields_derive = { path = "common/compare_fields_derive" }
context_deserialize = { path = "consensus/context_deserialize" }
context_deserialize_derive = { path = "consensus/context_deserialize_derive" }
criterion = "0.5"
delay_map = "0.4"
derivative = "2"
Expand Down
2 changes: 1 addition & 1 deletion beacon_node/beacon_chain/src/beacon_chain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6115,7 +6115,7 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
payload_attributes: payload_attributes.into(),
},
metadata: Default::default(),
version: Some(self.spec.fork_name_at_slot::<T::EthSpec>(prepare_slot)),
version: self.spec.fork_name_at_slot::<T::EthSpec>(prepare_slot),
}));
}
}
Expand Down
18 changes: 13 additions & 5 deletions beacon_node/builder_client/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use eth2::types::beacon_response::EmptyMetadata;
use eth2::types::builder_bid::SignedBuilderBid;
use eth2::types::fork_versioned_response::EmptyMetadata;
use eth2::types::{
ContentType, EthSpec, ExecutionBlockHash, ForkName, ForkVersionDecode, ForkVersionDeserialize,
ContentType, ContextDeserialize, EthSpec, ExecutionBlockHash, ForkName, ForkVersionDecode,
ForkVersionedResponse, PublicKeyBytes, SignedValidatorRegistrationData, Slot,
};
use eth2::types::{FullPayloadContents, SignedBlindedBeaconBlock};
Expand Down Expand Up @@ -119,7 +119,7 @@ impl BuilderHttpClient {
}

async fn get_with_header<
T: DeserializeOwned + ForkVersionDecode + ForkVersionDeserialize,
T: DeserializeOwned + ForkVersionDecode + for<'de> ContextDeserialize<'de, ForkName>,
U: IntoUrl,
>(
&self,
Expand Down Expand Up @@ -147,15 +147,23 @@ impl BuilderHttpClient {
self.ssz_available.store(true, Ordering::SeqCst);
T::from_ssz_bytes_by_fork(&response_bytes, fork_name)
.map(|data| ForkVersionedResponse {
version: Some(fork_name),
version: fork_name,
metadata: EmptyMetadata {},
data,
})
.map_err(Error::InvalidSsz)
}
ContentType::Json => {
self.ssz_available.store(false, Ordering::SeqCst);
serde_json::from_slice(&response_bytes).map_err(Error::InvalidJson)
let mut de = serde_json::Deserializer::from_slice(&response_bytes);
let data =
T::context_deserialize(&mut de, fork_name).map_err(Error::InvalidJson)?;

Ok(ForkVersionedResponse {
version: fork_name,
metadata: EmptyMetadata {},
data,
})
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions beacon_node/client/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -463,12 +463,12 @@ where
let blobs = if block.message().body().has_blobs() {
debug!("Downloading finalized blobs");
if let Some(response) = remote
.get_blobs::<E>(BlockId::Root(block_root), None)
.get_blobs::<E>(BlockId::Root(block_root), None, &spec)
.await
.map_err(|e| format!("Error fetching finalized blobs from remote: {e:?}"))?
{
debug!("Downloaded finalized blobs");
Some(response.data)
Some(response.into_data())
} else {
warn!(
block_root = %block_root,
Expand Down
6 changes: 3 additions & 3 deletions beacon_node/execution_layer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1980,7 +1980,7 @@ enum InvalidBuilderPayload {
expected: Option<u64>,
},
Fork {
payload: Option<ForkName>,
payload: ForkName,
expected: ForkName,
},
Signature {
Expand Down Expand Up @@ -2013,7 +2013,7 @@ impl fmt::Display for InvalidBuilderPayload {
write!(f, "payload block number was {} not {:?}", payload, expected)
}
InvalidBuilderPayload::Fork { payload, expected } => {
write!(f, "payload fork was {:?} not {}", payload, expected)
write!(f, "payload fork was {} not {}", payload, expected)
}
InvalidBuilderPayload::Signature { signature, pubkey } => write!(
f,
Expand Down Expand Up @@ -2116,7 +2116,7 @@ fn verify_builder_bid<E: EthSpec>(
payload: header.block_number(),
expected: block_number,
}))
} else if bid.version != Some(current_fork) {
} else if bid.version != current_fork {
Err(Box::new(InvalidBuilderPayload::Fork {
payload: bid.version,
expected: current_fork,
Expand Down
12 changes: 6 additions & 6 deletions beacon_node/execution_layer/src/test_utils/mock_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ impl<E: EthSpec> MockBuilder<E> {
.await
.map_err(|_| "couldn't get head".to_string())?
.ok_or_else(|| "missing head block".to_string())?
.data;
.into_data();

let head_block_root = head_block_root.unwrap_or(head.canonical_root());

Expand All @@ -761,7 +761,7 @@ impl<E: EthSpec> MockBuilder<E> {
.await
.map_err(|_| "couldn't get finalized block".to_string())?
.ok_or_else(|| "missing finalized block".to_string())?
.data
.data()
.message()
.body()
.execution_payload()
Expand All @@ -774,7 +774,7 @@ impl<E: EthSpec> MockBuilder<E> {
.await
.map_err(|_| "couldn't get justified block".to_string())?
.ok_or_else(|| "missing justified block".to_string())?
.data
.data()
.message()
.body()
.execution_payload()
Expand Down Expand Up @@ -815,7 +815,7 @@ impl<E: EthSpec> MockBuilder<E> {
.await
.map_err(|_| "couldn't get state".to_string())?
.ok_or_else(|| "missing state".to_string())?
.data;
.into_data();

let prev_randao = head_state
.get_randao_mix(head_state.current_epoch())
Expand Down Expand Up @@ -980,7 +980,7 @@ pub fn serve<E: EthSpec>(
.await
.map_err(|e| warp::reject::custom(Custom(e)))?;
let resp: ForkVersionedResponse<_> = ForkVersionedResponse {
version: Some(fork_name),
version: fork_name,
metadata: Default::default(),
data: payload,
};
Expand Down Expand Up @@ -1040,7 +1040,7 @@ pub fn serve<E: EthSpec>(
),
eth2::types::Accept::Json | eth2::types::Accept::Any => {
let resp: ForkVersionedResponse<_> = ForkVersionedResponse {
version: Some(fork_name),
version: fork_name,
metadata: Default::default(),
data: signed_bid,
};
Expand Down
4 changes: 2 additions & 2 deletions beacon_node/http_api/src/aggregate_attestation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use crate::version::{add_consensus_version_header, V1, V2};
use beacon_chain::{BeaconChain, BeaconChainTypes};
use eth2::types::{self, EndpointVersion, Hash256, Slot};
use std::sync::Arc;
use types::fork_versioned_response::EmptyMetadata;
use types::beacon_response::EmptyMetadata;
use types::{CommitteeIndex, ForkVersionedResponse};
use warp::{
hyper::{Body, Response},
Expand Down Expand Up @@ -52,7 +52,7 @@ pub fn get_aggregate_attestation<T: BeaconChainTypes>(

if endpoint_version == V2 {
let fork_versioned_response = ForkVersionedResponse {
version: Some(fork_name),
version: fork_name,
metadata: EmptyMetadata {},
data: aggregate_attestation,
};
Expand Down
Loading
Loading