Merge pull request #3830 from jimmygchen/blobs-beacon-api

Add Beacon API endpoint (/lighthouse) to download blobs by block ID
This commit is contained in:
realbigsean
2023-01-04 09:04:32 -05:00
committed by GitHub
4 changed files with 84 additions and 1 deletions

View File

@@ -63,6 +63,7 @@ pub fn run_parse_ssz<T: EthSpec>(matches: &ArgMatches) -> Result<(), String> {
"state_merge" => decode_and_print::<BeaconStateMerge<T>>(&bytes, format)?,
"state_capella" => decode_and_print::<BeaconStateCapella<T>>(&bytes, format)?,
"state_eip4844" => decode_and_print::<BeaconStateEip4844<T>>(&bytes, format)?,
"blobs_sidecar" => decode_and_print::<BlobsSidecar<T>>(&bytes, format)?,
other => return Err(format!("Unknown type: {}", other)),
};