/cosmos/slashing/v1beta1/signing_infos

SigningInfos queries signing info of all validators

Parameters:

None

Example:

// Request
curl -X GET -H 'Content-Type: application/json' https://froopyland.blockpi.network/lcd/v1/<your-api-key>/cosmos/slashing/v1beta1/signing_infos

// Result
{
    "info": [
        {
            "address": "dymvalcons1qqwllenlt8k5rm0eyz5sa7302gr6phy0qt6795",
            "index_offset": "678299",
            "jailed_until": "1970-01-01T00:00:00Z",
            "missed_blocks_counter": "26",
            "start_height": "973233",
            "tombstoned": false
        },
        {
            "address": "dymvalcons1q7kx9zne238903evuse4pkm84mpgq8tmw0eeng",
            "index_offset": "1651533",
            "jailed_until": "1970-01-01T00:00:00Z",
            "missed_blocks_counter": "0",
            "start_height": "0",
            "tombstoned": false
        },
        {
            "address": "dymvalcons1prz4hd5x5nntuw6xu60785dnvyk05n99xxwmga",
            "index_offset": "1321870",
            "jailed_until": "1970-01-01T00:00:00Z",
            "missed_blocks_counter": "7",
            "start_height": "329662",
            "tombstoned": false
        },
        ......
        {
            "address": "dymvalcons1u59g6uv6tlp7klnun4rw9l6fp9myraxz2lc0cd",
            "index_offset": "917001",
            "jailed_until": "1970-01-01T00:00:00Z",
            "missed_blocks_counter": "1",
            "start_height": "734531",
            "tombstoned": false
        },
        {
            "address": "dymvalcons1ulglt5ka23uauxh5pjvahyk4etka0r5areyagn",
            "index_offset": "827172",
            "jailed_until": "1970-01-01T00:00:00Z",
            "missed_blocks_counter": "0",
            "start_height": "824360",
            "tombstoned": false
        }
    ],
    "pagination": {
        "next_key": "FOkKngegxTwhZVOhLj85kLrJiALm",
        "total": "108"
    }
}

Last updated