Interface EthereumValidatorBatchDepositDto

interface EthereumValidatorBatchDepositDto {
    deposits: EthereumValidatorDepositBaseDto[];
    fromAddress: string;
    gasEstimateMultiplier: number;
}

Properties

Array of validator deposit details

Example

[{"validatorPubkey":"0xa20d2ba70419cb3922985488e339736ab32e6184f11708d2333f65b14f70cf47365b538c32eff237cdaf293ea2bcfb03","amountWei":"1000000000000000000","signature":"8473169ba6...fdfb36571","withdrawalCredentials":"0x020000000000000000000000110af92ba116fd7868216aa794a7e4da3b9d7d11"}]
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

Generated using TypeDoc