interface CreateStakeDto {
    label: string;
    reference: string;
    suggestedFeeRecipient: string;
    validatorCount: number;
    withdrawalAddress: string;
}

Properties

label: string

an arbitrary label/memo

Example

"Stake for 2 vallies"
reference: string

an arbitrary reference used to identify/group the stake

Example

"customer-id-1403"
suggestedFeeRecipient: string

nominated fee recipient address

Example

"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
validatorCount: number

Example

2
withdrawalAddress: string

nominated withdrawal address

Example

"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"

Generated using TypeDoc