Interface GetValidatorsByWithdrawalAddressResponseDto

interface GetValidatorsByWithdrawalAddressResponseDto {
    total: number;
    validators: {
        publickey?: string;
        validatorindex?: number;
    }[];
    withdrawalAddress: string;
}

Properties

total: number

Total number of validators found

validators: {
    publickey?: string;
    validatorindex?: number;
}[]

Array of validators associated with the withdrawal address

Type declaration

  • Optional publickey?: string

    The public key of the validator

  • Optional validatorindex?: number

    The validator index

withdrawalAddress: string

The withdrawal address that was queried