Interface AddTrackedWithdrawalAddressDto

interface AddTrackedWithdrawalAddressDto {
    custodian?: string;
    customerId?: number;
    isActive?: boolean;
    label?: string;
    reference?: string;
    withdrawalAddress: string;
}

Properties

custodian?: string

Custodian name for the tracked address

Example

"BitGo"
customerId?: number

The customer ID to associate with this withdrawal address

Example

1
isActive?: boolean

Whether tracking is active

Example

true
label?: string

Label for the tracked address

Example

"External Validators"
reference?: string

Reference for grouping validators

Example

"External Import"
withdrawalAddress: string

The withdrawal address to track

Example

"0x1234567890123456789012345678901234567890"