Interface GetValidatorsResponse

interface GetValidatorsResponse {
    pagination: {
        next_key: string;
        total: number;
    };
    validators: Validator[];
}

Properties

pagination: {
    next_key: string;
    total: number;
}
validators: Validator[]