-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into eip_rename
- Loading branch information
Showing
20 changed files
with
304 additions
and
71 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
.idea | ||
deploy | ||
node_modules |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
post: | ||
operationId: "submitBeaconCommitteeSelections" | ||
summary: Determine if a distributed validator has been selected to aggregate attestations | ||
description: | | ||
This endpoint should be used by a validator client running as part of a distributed validator cluster, and is | ||
implemented by a distributed validator middleware client. This endpoint is used to exchange partial | ||
selection proofs for combined/aggregated selection proofs to allow a validator client | ||
to correctly determine if one of its validators has been selected to perform an aggregation duty in this slot. | ||
Consensus clients need not support this endpoint and may return a 501. | ||
tags: | ||
- Validator | ||
requestBody: | ||
content: | ||
application/json: | ||
schema: | ||
title: BeaconCommitteeSelectionRequest | ||
type: array | ||
items: | ||
$ref: '../../beacon-node-oapi.yaml#/components/schemas/BeaconCommitteeSelection' | ||
|
||
responses: | ||
"200": | ||
description: | | ||
Returns the threshold aggregated beacon committee selection proofs. | ||
content: | ||
application/json: | ||
schema: | ||
title: BeaconCommitteeSelectionResponse | ||
type: object | ||
properties: | ||
data: | ||
type: array | ||
items: | ||
$ref: '../../beacon-node-oapi.yaml#/components/schemas/BeaconCommitteeSelection' | ||
|
||
"400": | ||
$ref: '../../beacon-node-oapi.yaml#/components/responses/InvalidRequest' | ||
"500": | ||
$ref: '../../beacon-node-oapi.yaml#/components/responses/InternalError' | ||
"501": | ||
$ref: '../../beacon-node-oapi.yaml#/components/responses/NotImplementedError' | ||
"503": | ||
$ref: '../../beacon-node-oapi.yaml#/components/responses/CurrentlySyncing' |
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,41 @@ | ||
post: | ||
operationId: "submitSyncCommitteeSelections" | ||
summary: Determine if a distributed validator has been selected to make a sync committee contribution | ||
description: | | ||
Submit sync committee selections to a DVT middleware client. It returns the threshold aggregated sync | ||
committee selection. This endpoint should be used by a validator client running as part of a distributed | ||
validator cluster, and is implemented by a distributed validator middleware client. This endpoint is | ||
used to exchange partial selection proof slot signatures for combined/aggregated selection proofs to | ||
allow a validator client to correctly determine if one of its validators has been selected to perform | ||
a sync committee contribution (sync aggregation) duty in this slot. Consensus clients need not support | ||
this endpoint and may return a 501. | ||
tags: | ||
- Validator | ||
requestBody: | ||
content: | ||
application/json: | ||
schema: | ||
title: SyncCommitteeSelectionRequest | ||
type: array | ||
items: | ||
$ref: '../../beacon-node-oapi.yaml#/components/schemas/SyncCommitteeSelection' | ||
responses: | ||
"200": | ||
description: | | ||
Returns the threshold aggregated sync committee selection proofs. | ||
content: | ||
application/json: | ||
schema: | ||
title: SyncCommitteeSelectionResponse | ||
type: object | ||
properties: | ||
data: | ||
type: array | ||
items: | ||
$ref: '../../beacon-node-oapi.yaml#/components/schemas/SyncCommitteeSelection' | ||
"400": | ||
$ref: '../../beacon-node-oapi.yaml#/components/responses/InvalidRequest' | ||
"500": | ||
$ref: '../../beacon-node-oapi.yaml#/components/responses/InternalError' | ||
"503": | ||
$ref: '../../beacon-node-oapi.yaml#/components/responses/CurrentlySyncing' |
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.