interface UntrackedKnownAddressDto {
    address: string;
    description: string;
    idleWei: string;
    stakedWei: string;
}

Properties

address: string

The wallet address

Example

"0x1234567890123456789012345678901234567890"
description: string

Description of how this address is known (e.g., withdrawal address, fee recipient)

Example

"withdrawal address"
idleWei: string

Idle ETH balance in wei in this wallet

Example

"1500000000000000000"
stakedWei: string

Total staked ETH in wei for validators using this address

Example

"32000000000000000000"