QueryValidatorsResponse is response type for the Query/Validators RPC method

interface QueryValidatorsResponse {
    pagination?: PageResponse;
    validators: Validator[];
}

Properties

pagination?: PageResponse

pagination defines the pagination in the response.

validators: Validator[]

validators contains all the queried validators.