File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
crates/common/src/pbs/types Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 11use alloy:: primitives:: { B256 , U256 , b256} ;
22use lh_types:: { BlindedPayload , ExecPayload , MainnetEthSpec } ;
3+ pub use lh_types:: { ForkName , ForkVersionedResponse } ;
34use serde:: { Deserialize , Serialize } ;
45
56use crate :: types:: BlsPublicKey ;
67
78pub const EMPTY_TX_ROOT_HASH : B256 =
89 b256 ! ( "7ffe241ea60187fdb0187bfa22de35d1f9bed7ab061d9401fd47e34a54fbede1" ) ;
910
11+ pub type ExecutionRequests = lh_types:: execution_requests:: ExecutionRequests < MainnetEthSpec > ;
12+
1013/// Request object of POST `/eth/v1/builder/blinded_blocks`
1114pub type SignedBlindedBeaconBlock =
1215 lh_types:: signed_beacon_block:: SignedBlindedBeaconBlock < MainnetEthSpec > ;
@@ -37,10 +40,6 @@ pub type BuilderBidElectra = lh_types::builder_bid::BuilderBidElectra<MainnetEth
3740/// `/eth/v1/builder/header/{slot}/{parent_hash}/{pubkey}`
3841pub type GetHeaderResponse = lh_types:: ForkVersionedResponse < SignedBuilderBid > ;
3942
40- pub use lh_types:: { ForkName , ForkVersionedResponse } ;
41-
42- pub type ExecutionRequests = lh_types:: execution_requests:: ExecutionRequests < MainnetEthSpec > ;
43-
4443/// Response params of GET
4544/// `/eth/v1/builder/header/{slot}/{parent_hash}/{pubkey}`
4645#[ derive( Debug , Serialize , Deserialize , Clone ) ]
You can’t perform that action at this time.
0 commit comments