Chain validators
get
Lists the chain validator workers and their status.
Responses
200Success
application/json
default
application/json
get
GET /workers/chain_validators HTTP/1.1
Host: xtz.nownodes.io
Accept: */*
[
{
"chain_id": "text",
"status": {
"phase": "launching",
"since": "text"
},
"information": {
"instances": 1,
"status": {
"phase": "launching",
"since": "text"
},
"queue_length": 1
},
"pipelines": 1
}
]
get
Introspect the state of a chain validator worker.
Path parameters
chain_idstringRequired
A chain identifier. This is either a chain hash in Base58Check notation or a one the predefined aliases: 'main', 'test'.
Responses
200Success
application/json
default
application/json
get
GET /workers/chain_validators/{chain_id} HTTP/1.1
Host: xtz.nownodes.io
Accept: */*
{
"status": {
"phase": "launching",
"since": "text"
},
"pending_requests": [
{
"pushed": "text",
"request": {
"hash": "text"
}
}
],
"current_request": {
"pushed": "text",
"treated": "text",
"request": {
"hash": "text"
}
}
}