interface ValidatorWithdrawal {
    amount: number;
    status: "QUEUED" | "PROCESSED";
    withdrawableEpoch: number;
}

Properties

amount: number
status: "QUEUED" | "PROCESSED"
withdrawableEpoch: number