WrapEth
Last updated
Helper action to wrap Ether to WETH9
Notes
Wraps native Eth to WETH9 token. If amount is type(uint256).max wraps whole balance.
0x11135183
const wrapEthAction = new dfs.actions.basic.WrapEthAction(
amount,
includeEthInTx
);STANDARD_ACTION
/// @param amount Amount of ether to wrap
struct Params {
uint256 amount;
}Last updated
return bytes32(_wrapEth(inputData.amount));