cosmos/slashing/v1beta1/signing_infos

Parameters

None

Result

The signing info of all validators.

Example

Request

curl <your-rest-endpoint>/cosmos/slashing/v1beta1/signing_infos \
  -X GET \
  -H "accept: application/json"

Return

{
    "info": [
        {
            "address": "",
            "start_height": "0",
            "index_offset": "17508839",
            "jailed_until": "1970-01-01T00:00:00Z",
            "tombstoned": false,
            "missed_blocks_counter": "0"
        },
        {
            "address": "",
            "start_height": "0",
            "index_offset": "17793554",
            "jailed_until": "1970-01-01T00:00:00Z",
            "tombstoned": false,
            "missed_blocks_counter": "22"
        },
        ...
        {
            "address": "cosmosvalcons1gyk422n398zfdt2v8k420nhhpzw88v2q9ews9j",
            "start_height": "284470",
            "index_offset": "2873710",
            "jailed_until": "9999-12-31T23:59:59Z",
            "tombstoned": true,
            "missed_blocks_counter": "140"
        },
        {
            "address": "",
            "start_height": "0",
            "index_offset": "7450590",
            "jailed_until": "2021-07-13T21:18:36.297179232Z",
            "tombstoned": false,
            "missed_blocks_counter": "0"
        }
    ],
    "pagination": {
        "next_key": "FEMFT7g8icvZCfCkIA3QtHn3ZX4Y",
        "total": "414"
    }
}