Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 73
Add SSZ types, content negotiation, and encoding helpers#466
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
e6d68a695adfe8c311eaacfd290a0b82ae190ca2ea4664fddfd22805eaa84c1File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| use alloy::primitives::{B256, U256, b256}; | ||
| use lh_eth2::ForkVersionedResponse; | ||
| pub use lh_eth2::ForkVersionedResponse; | ||
| pub use lh_types::ForkName; | ||
| use lh_types::{BlindedPayload, ExecPayload, MainnetEthSpec}; | ||
| use serde::{Deserialize, Serialize}; | ||
| @@ -26,6 +26,10 @@ pub type PayloadAndBlobs = lh_eth2::types::ExecutionPayloadAndBlobs<MainnetEthSp | ||
| pub type SubmitBlindedBlockResponse = ForkVersionedResponse<PayloadAndBlobs>; | ||
| pub type ExecutionPayloadHeader = lh_types::ExecutionPayloadHeader<MainnetEthSpec>; | ||
| pub type ExecutionPayloadHeaderBellatrix = | ||
| lh_types::ExecutionPayloadHeaderBellatrix<MainnetEthSpec>; | ||
| pub type ExecutionPayloadHeaderCapella = lh_types::ExecutionPayloadHeaderCapella<MainnetEthSpec>; | ||
| pub type ExecutionPayloadHeaderDeneb = lh_types::ExecutionPayloadHeaderDeneb<MainnetEthSpec>; | ||
| pub type ExecutionPayloadHeaderElectra = lh_types::ExecutionPayloadHeaderElectra<MainnetEthSpec>; | ||
| pub type ExecutionPayloadHeaderFulu = lh_types::ExecutionPayloadHeaderFulu<MainnetEthSpec>; | ||
| pub type ExecutionPayloadHeaderRef<'a> = lh_types::ExecutionPayloadHeaderRef<'a, MainnetEthSpec>; | ||
| @@ -34,7 +38,11 @@ pub type ExecutionPayloadElectra = lh_types::ExecutionPayloadElectra<MainnetEthS | ||
| pub type ExecutionPayloadFulu = lh_types::ExecutionPayloadFulu<MainnetEthSpec>; | ||
| pub type SignedBuilderBid = lh_types::SignedBuilderBid<MainnetEthSpec>; | ||
| pub type BuilderBid = lh_types::BuilderBid<MainnetEthSpec>; | ||
| pub type BuilderBidBellatrix = lh_types::BuilderBidBellatrix<MainnetEthSpec>; | ||
| pub type BuilderBidCapella = lh_types::BuilderBidCapella<MainnetEthSpec>; | ||
| pub type BuilderBidDeneb = lh_types::BuilderBidDeneb<MainnetEthSpec>; | ||
JasonVranek marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| pub type BuilderBidElectra = lh_types::BuilderBidElectra<MainnetEthSpec>; | ||
| pub type BuilderBidFulu = lh_types::BuilderBidFulu<MainnetEthSpec>; | ||
| /// Response object of GET | ||
| /// `/eth/v1/builder/header/{slot}/{parent_hash}/{pubkey}` | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.