interface TargetValidatorDto {
    currentBalanceGwei: string;
    pendingIncomingGwei: string;
    projectedBalanceGwei: string;
    pubkey: string;
}

Properties

currentBalanceGwei: string

Current balance of the target validator in Gwei

Example

"32000000000"
pendingIncomingGwei: string

Sum of all pending incoming consolidations to this validator in Gwei

Example

"5000000000"
projectedBalanceGwei: string

Projected balance after all consolidations complete (current + pending + requested) in Gwei

Example

"69000000000"
pubkey: string

Target validator public key (BLS12-381)

Example

"0xbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"