-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update PostBlock and PostBlindedBlock for Deneb
- Loading branch information
1 parent
d6a431f
commit eff21af
Showing
20 changed files
with
339 additions
and
66 deletions.
There are no files selected for viewing
This file contains 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 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 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
16 changes: 16 additions & 0 deletions
16
...est/resources/tech/pegasys/teku/beaconrestapi/beacon/schema/SignedBlindedBlobSidecar.json
This file contains 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,16 @@ | ||
{ | ||
"title" : "SignedBlindedBlobSidecar", | ||
"type" : "object", | ||
"required" : [ "message", "signature" ], | ||
"properties" : { | ||
"message" : { | ||
"$ref" : "#/components/schemas/BlindedBlobSidecar" | ||
}, | ||
"signature" : { | ||
"type" : "string", | ||
"pattern" : "^0x[a-fA-F0-9]{2,}$", | ||
"description" : "SSZ hexadecimal", | ||
"format" : "bytes" | ||
} | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
...ources/tech/pegasys/teku/beaconrestapi/beacon/schema/SignedBlindedBlockContentsDeneb.json
This file contains 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,16 @@ | ||
{ | ||
"title" : "SignedBlindedBlockContentsDeneb", | ||
"type" : "object", | ||
"required" : [ "signed_blinded_block", "signed_blinded_blob_sidecars" ], | ||
"properties" : { | ||
"signed_blinded_block" : { | ||
"$ref" : "#/components/schemas/SignedBlindedBlockDeneb" | ||
}, | ||
"signed_blinded_blob_sidecars" : { | ||
"type" : "array", | ||
"items" : { | ||
"$ref" : "#/components/schemas/SignedBlindedBlobSidecar" | ||
} | ||
} | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
...ation-test/resources/tech/pegasys/teku/beaconrestapi/beacon/schema/SignedBlobSidecar.json
This file contains 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,16 @@ | ||
{ | ||
"title" : "SignedBlobSidecar", | ||
"type" : "object", | ||
"required" : [ "message", "signature" ], | ||
"properties" : { | ||
"message" : { | ||
"$ref" : "#/components/schemas/BlobSidecar" | ||
}, | ||
"signature" : { | ||
"type" : "string", | ||
"pattern" : "^0x[a-fA-F0-9]{2,}$", | ||
"description" : "SSZ hexadecimal", | ||
"format" : "bytes" | ||
} | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
...est/resources/tech/pegasys/teku/beaconrestapi/beacon/schema/SignedBlockContentsDeneb.json
This file contains 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,16 @@ | ||
{ | ||
"title" : "SignedBlockContentsDeneb", | ||
"type" : "object", | ||
"required" : [ "signed_block", "signed_blob_sidecars" ], | ||
"properties" : { | ||
"signed_block" : { | ||
"$ref" : "#/components/schemas/SignedBeaconBlockDeneb" | ||
}, | ||
"signed_blob_sidecars" : { | ||
"type" : "array", | ||
"items" : { | ||
"$ref" : "#/components/schemas/SignedBlobSidecar" | ||
} | ||
} | ||
} | ||
} |
This file contains 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 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 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 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 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 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
Oops, something went wrong.