Interface EthereumValidatorBatchTopupDto

interface EthereumValidatorBatchTopupDto {
    deposits: EthereumValidatorTopupBaseDto[];
    fromAddress: string;
    gasEstimateMultiplier: number;
}

Properties

Array of validator topup details

Example

[{"validatorPubkey":"0xa20d2ba70419cb3922985488e339736ab32e6184f11708d2333f65b14f70cf47365b538c32eff237cdaf293ea2bcfb03","amountWei":"1000000000000000000"}]
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