interface EthereumValidatorWithdrawDto {
    amountGwei: string;
    fromAddress: string;
    gasEstimateMultiplier: number;
    validatorPubkey: string;
}

Properties

amountGwei: string

Amount of ETH to withdraw in gwei

Example

"1000000000"
fromAddress: string

The address to send the transaction from, this is required for accurate gas estimation and nonce calculation

Example

"0x0000000000000000000000000000000000000000"
gasEstimateMultiplier: number

multiplier to apply to gas estimate, defaults to 1.2

Example

1.2
validatorPubkey: string

Validator public key to withdraw from

Example

"a20d2ba70419cb3922985488e339736ab32e6184f11708d2333f65b14f70cf47365b538c32eff237cdaf293ea2bcfb03"

Generated using TypeDoc