interface CreateStakePectraDto {
    label: string;
    maxEthPerValidatorGwei: string;
    reference: string;
    stakeAmountGwei: string;
    suggestedFeeRecipient: string;
    withdrawalAddress: string;
}

Properties

label: string

an arbitrary label/memo

Example

"Staking 100 ETH"
maxEthPerValidatorGwei: string

max ETH to allocate to each validator, will default to 2048 ETH

Example

"100000000000"
reference: string

an arbitrary reference used to identify/group the stake

Example

"customer-id-1403"
stakeAmountGwei: string

total number of eth to stake

Example

"1000000000000"
suggestedFeeRecipient: string

nominated fee recipient address

Example

"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
withdrawalAddress: string

nominated withdrawal address

Example

"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"

Generated using TypeDoc