QueryValidatorSlashesRequest is the request type for the Query/ValidatorSlashes RPC method

interface QueryValidatorSlashesRequest {
    endingHeight: bigint;
    pagination?: PageRequest;
    startingHeight: bigint;
    validatorAddress: string;
}

Properties

endingHeight: bigint

starting_height defines the optional ending height to query the slashes.

pagination?: PageRequest

pagination defines an optional pagination for the request.

startingHeight: bigint

starting_height defines the optional starting height to query the slashes.

validatorAddress: string

validator_address defines the validator address to query for.