interface LsEthDepositDto {
    amountWei: string;
    fromAddress: string;
    gasEstimateMultiplier?: number;
}

Properties

amountWei: string

Amount of ETH to deposit in wei

Example

"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