interface LsEthRedeemDto {
    fromAddress: string;
    gasEstimateMultiplier?: number;
    lsEthAmountWei: string;
    recipient: string;
}

Properties

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
lsEthAmountWei: string

Amount of lsETH to redeem in wei

Example

"1000000000000000000"
recipient: string

Recipient address for the redeemed ETH (can be different from fromAddress)

Example

"0x1234567890123456789012345678901234567890"

Generated using TypeDoc