-
Notifications
You must be signed in to change notification settings - Fork 211
Add blob signing endpoints #302
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
Merged
rolfyone
merged 22 commits into
ethereum:master
from
realbigsean:add-blob-signing-endpoints
May 16, 2023
Merged
Changes from 18 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
5502da1
Update types to support EIP-4844 (#271)
jimmygchen e702695
Merge remote-tracking branch 'upstream/master' into EIP4844
rolfyone fd02cd2
Introduce Deneb to remove EIP-4844 references
rolfyone 09ca1dd
Merge remote-tracking branch 'upstream/master' into eip_rename
rolfyone 709ccd6
fix lint - couldnt find any evidence of capella transactions, so put …
rolfyone a213e30
update necessary types
realbigsean cec2c91
add/update blob signing related endpoints
realbigsean af17213
bug fixes
realbigsean bb8b8ae
fix lints
realbigsean b14c00c
KZG proof whitespace fix
realbigsean 066ed57
Merge branch 'master' into add-blob-signing-endpoints
realbigsean 0efc637
more descriptive blob sidecar name
realbigsean 9d08f11
Combine signed block and blob publishing
realbigsean a630ac8
Fix references to block contents and add to description in the block …
realbigsean eb5d7d1
Merge branch 'master' of https://github.com/ethereum/beacon-APIs into…
realbigsean 1a9034c
Unblind blobs in default flow
realbigsean 2627727
Merge branch 'master' of https://github.com/ethereum/beacon-APIs into…
realbigsean 1b08ee4
Merge branch 'master' of https://github.com/ethereum/beacon-APIs into…
realbigsean 605dd84
Update types/deneb/block.yaml
realbigsean 23b236a
remove duplicates in beacon-node-oapi.yaml
realbigsean 32f5c39
Merge branch 'add-blob-signing-endpoints' of https://github.com/realb…
realbigsean f7b11f6
added changelog entry.
rolfyone File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,90 @@ | ||
| Deneb: | ||
| BlobSidecars: | ||
| type: array | ||
| items: | ||
| $ref: '#/Deneb/BlobSidecar' | ||
| minItems: 0 | ||
| maxItems: 4 | ||
|
|
||
| BlobSidecar: | ||
| type: object | ||
| description: "A blob sidecar as defined in the Deneb consensus spec." | ||
| properties: | ||
| block_root: | ||
| $ref: "../primitive.yaml#/Root" | ||
| index: | ||
| $ref: "../primitive.yaml#/Uint64" | ||
| slot: | ||
| $ref: "../primitive.yaml#/Uint64" | ||
| block_parent_root: | ||
| $ref: "../primitive.yaml#/Root" | ||
| proposer_index: | ||
| $ref: "../primitive.yaml#/Uint64" | ||
| blob: | ||
| $ref: "../primitive.yaml#/Blob" | ||
| kzg_commitment: | ||
| $ref: '../primitive.yaml#/KZGCommitment' | ||
| kzg_proof: | ||
| $ref: '../primitive.yaml#/KZGProof' | ||
|
|
||
| SignedBlobSidecars: | ||
| type: array | ||
| items: | ||
| $ref: '#/Deneb/SignedBlobSidecar' | ||
| minItems: 0 | ||
| maxItems: 4 | ||
|
|
||
| SignedBlobSidecar: | ||
| type: object | ||
| description: "The `SignedBlobSidecar` object envelope from the CL Deneb spec." | ||
| properties: | ||
| message: | ||
| $ref: "#/Deneb/BlobSidecar" | ||
| signature: | ||
| $ref: "../primitive.yaml#/Signature" | ||
|
|
||
| BlindedBlobSidecars: | ||
| type: array | ||
| items: | ||
| $ref: '#/Deneb/BlindedBlobSidecar' | ||
| minItems: 0 | ||
| maxItems: 4 | ||
|
|
||
| BlindedBlobSidecar: | ||
| type: object | ||
| description: "A blob sidecar with the SSZ root of the blob rather than the full blob." | ||
| properties: | ||
| block_root: | ||
| $ref: "../primitive.yaml#/Root" | ||
| index: | ||
| $ref: "../primitive.yaml#/Uint64" | ||
| slot: | ||
| $ref: "../primitive.yaml#/Uint64" | ||
| block_parent_root: | ||
| $ref: "../primitive.yaml#/Root" | ||
| proposer_index: | ||
| $ref: "../primitive.yaml#/Uint64" | ||
| blob_root: | ||
| $ref: "../primitive.yaml#/Root" | ||
| kzg_commitment: | ||
| $ref: '../primitive.yaml#/KZGCommitment' | ||
| kzg_proof: | ||
| $ref: '../primitive.yaml#/KZGProof' | ||
|
|
||
| SignedBlindedBlobSidecars: | ||
| type: array | ||
| items: | ||
| $ref: '#/Deneb/SignedBlindedBlobSidecar' | ||
| minItems: 0 | ||
| maxItems: 4 | ||
|
|
||
| SignedBlindedBlobSidecar: | ||
| type: object | ||
| description: "A variant of the `SignedBlobSidecar` object envelope from the CL Deneb spec, which contains a `BlindedBlobSidecar` rather than a `BlobSidecar`." | ||
| properties: | ||
| message: | ||
| $ref: "#/Deneb/BlindedBlobSidecar" | ||
| signature: | ||
| $ref: "../primitive.yaml#/Signature" | ||
|
|
||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| Deneb: | ||
| BlockContents: | ||
| type: object | ||
| description: "The required object for block production according to the Deneb CL spec." | ||
| properties: | ||
| block: | ||
| $ref: "./block.yaml#/Deneb/BeaconBlock" | ||
| blob_sidecars: | ||
rkapka marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| $ref: "./blob_sidecar.yaml#/Deneb/BlobSidecars" | ||
|
|
||
| BlindedBlockContents: | ||
| type: object | ||
| description: "The required object for blinded block production according to the Deneb CL spec." | ||
| properties: | ||
| blinded_block: | ||
| $ref: "./block.yaml#/Deneb/BlindedBeaconBlock" | ||
| blinded_blob_sidecars: | ||
| $ref: "./blob_sidecar.yaml#/Deneb/BlindedBlobSidecars" | ||
|
|
||
| SignedBlockContents: | ||
| type: object | ||
| description: "The required signed components of block production according to the Deneb CL spec." | ||
| properties: | ||
| signed_block: | ||
| $ref: "./block.yaml#/Deneb/SignedBeaconBlock" | ||
| signed_blob_sidecars: | ||
| $ref: "./blob_sidecar.yaml#/Deneb/SignedBlobSidecars" | ||
|
|
||
| SignedBlindedBlockContents: | ||
| type: object | ||
| description: "The required signed components of block production according to the Deneb CL spec." | ||
| properties: | ||
| signed_blinded_block: | ||
| $ref: "./block.yaml#/Deneb/SignedBlindedBeaconBlock" | ||
| signed_blinded_blob_sidecars: | ||
| $ref: "./blob_sidecar.yaml#/Deneb/SignedBlindedBlobSidecars" | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.