-
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.
Validator identities endpoint. (#452)
In support of #449. Co-authored-by: Paul Harris <[email protected]> Co-authored-by: Nico Flaig <[email protected]>
- Loading branch information
1 parent
203410d
commit 30f0568
Showing
4 changed files
with
90 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
post: | ||
operationId: "postStateValidatorIdentities" | ||
summary: "Get validator identities from state" | ||
description: | | ||
Returns filterable list of validators identities. | ||
Identities will be returned for all indices or public keys that match known validators. If an index or public key does not | ||
match any known validator, no identity will be returned but this will not cause an error. There are no guarantees for the | ||
returned data in terms of ordering. | ||
Depending on `Accept` header data can be returned either as JSON or as bytes serialized by SSZ. | ||
tags: | ||
- Beacon | ||
parameters: | ||
- name: state_id | ||
in: path | ||
$ref: '../../../beacon-node-oapi.yaml#/components/parameters/StateId' | ||
requestBody: | ||
description: "An array of values, with each value either a hex encoded public key (any bytes48 with 0x prefix) or a validator index." | ||
required: false | ||
content: | ||
application/json: | ||
schema: | ||
type: array | ||
uniqueItems: true | ||
items: | ||
description: "Either hex encoded public key (any bytes48 with 0x prefix) or validator index" | ||
type: string | ||
responses: | ||
"200": | ||
description: Success | ||
content: | ||
application/json: | ||
schema: | ||
title: PostStateValidatorIdentitiesResponse | ||
type: object | ||
required: [execution_optimistic, finalized, data] | ||
properties: | ||
execution_optimistic: | ||
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/ExecutionOptimistic" | ||
finalized: | ||
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/Finalized" | ||
data: | ||
type: array | ||
items: | ||
$ref: '../../../beacon-node-oapi.yaml#/components/schemas/ValidatorIdentityResponse' | ||
application/octet-stream: | ||
schema: | ||
description: "SSZ serialized results. Use Accept header to choose this response type" | ||
"400": | ||
description: "Invalid state ID or malformed request" | ||
content: | ||
application/json: | ||
schema: | ||
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/ErrorMessage" | ||
example: | ||
code: 400 | ||
message: "Invalid state ID: current" | ||
"404": | ||
description: "State not found" | ||
content: | ||
application/json: | ||
schema: | ||
$ref: "../../../beacon-node-oapi.yaml#/components/schemas/ErrorMessage" | ||
example: | ||
code: 404 | ||
message: "State not found" | ||
"406": | ||
$ref: "../../../beacon-node-oapi.yaml#/components/responses/NotAcceptable" | ||
"500": | ||
$ref: '../../../beacon-node-oapi.yaml#/components/responses/InternalError' |
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