validator

Get validator's uptime and history of signed block

Returns the validator's uptime percentage and a history of the last N blocks indicating whether each was signed.

get/validators/{id}/uptime

Path parameters

idinteger required

Internal validator id

Query parameters

limitinteger

Count of requested blocks

Response

OK

uptimestring

Example response

{
  "blocks": [
    {
      "height": 100,
      "signed": true
    }
  ],
  "uptime": "0.97"
}

Changes