List nodes
Get a list of the nodes on the network along with the related information.
Query Parameters
Epoch number to list nodes for, if provided.
Number of records to be returned that sort greater than row identified by cursor supplied in 'after'.
If paging forwards, the cursor string for the last row of the previous page.
Number of records to be returned that sort less than row identified by cursor supplied in 'before'.
If paging forwards, the cursor string for the first row of the previous page.
Newest records first, older records last, default is true.
- 200
- 500
- default
A successful response.
Schema
nodes object
Page of node data and corresponding page information.
edges object[]
Page of node data and their corresponding cursors.
node object
Data specific to a single node on the Vega network.
delegations object[]
Node's delegations.
epochData object
Information about epoch.
rankingScore object
Node ranking information.
Possible values: [VALIDATOR_NODE_STATUS_UNSPECIFIED
, VALIDATOR_NODE_STATUS_TENDERMINT
, VALIDATOR_NODE_STATUS_ERSATZ
, VALIDATOR_NODE_STATUS_PENDING
]
Possible values: [VALIDATOR_NODE_STATUS_UNSPECIFIED
, VALIDATOR_NODE_STATUS_TENDERMINT
, VALIDATOR_NODE_STATUS_ERSATZ
, VALIDATOR_NODE_STATUS_PENDING
]
rewardScore object
Node reward score.
Possible values: [VALIDATOR_NODE_STATUS_UNSPECIFIED
, VALIDATOR_NODE_STATUS_TENDERMINT
, VALIDATOR_NODE_STATUS_ERSATZ
, VALIDATOR_NODE_STATUS_PENDING
]
Possible values: [NODE_STATUS_UNSPECIFIED
, NODE_STATUS_VALIDATOR
, NODE_STATUS_NON_VALIDATOR
]
pageInfo object
Page information that is used for fetching further pages.
{
"nodes": {
"edges": [
{
"cursor": "string",
"node": {
"avatarUrl": "string",
"delegations": [
{
"amount": "string",
"epochSeq": "string",
"nodeId": "string",
"party": "string"
}
],
"epochData": {
"offline": 0,
"online": 0,
"total": 0
},
"ethereumAddress": "string",
"id": "string",
"infoUrl": "string",
"location": "string",
"maxIntendedStake": "string",
"name": "string",
"pendingStake": "string",
"pubKey": "string",
"rankingScore": {
"performanceScore": "string",
"previousStatus": "VALIDATOR_NODE_STATUS_UNSPECIFIED",
"rankingScore": "string",
"stakeScore": "string",
"status": "VALIDATOR_NODE_STATUS_UNSPECIFIED",
"votingPower": 0
},
"rewardScore": {
"multisigScore": "string",
"normalisedScore": "string",
"performanceScore": "string",
"rawValidatorScore": "string",
"validatorScore": "string",
"validatorStatus": "VALIDATOR_NODE_STATUS_UNSPECIFIED"
},
"stakedByDelegates": "string",
"stakedByOperator": "string",
"stakedTotal": "string",
"status": "NODE_STATUS_UNSPECIFIED",
"tmPubKey": "string"
}
}
],
"pageInfo": {
"endCursor": "string",
"hasNextPage": true,
"hasPreviousPage": true,
"startCursor": "string"
}
}
}
An internal server error
Schema
details object[]
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "string"
}
An unexpected error response.
Schema
details object[]
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "string"
}