const liquityPaybackAction = new dfs.actions.liquity.LiquityPaybackAction(
LUSDAmount,
from,
upperHint,
lowerHint,
);
The address from which we are pulling LUSD must approve proxy to pull tokens
/// @param lusdAmount Amount of LUSD tokens to repay
/// @param from Address where to pull the tokens from
/// @param upperHint
/// @param lowerHint
struct Params {
uint256 lusdAmount;
address from;
address upperHint;
address lowerHint;
}
return bytes32(repayAmount);
emit ActionEvent("LiquityPayback", logData);
logger.logActionDirectEvent("LiquityPayback", logData);
bytes memory logData = abi.encode(_params.lusdAmount, _params.from)