const llamaLendRepayAction = new dfs.actions.llamalend.LlamaLendRepayAction(
controller,
controllerId,
exchangeOrder,
to,
gasUsed
);
Action Type
STANDARD_ACTION
Input Parameters
/// @param controllerAddress Address of the llamalend market controller
/// @param controllerId id that matches controller number in factory
/// @param exData exchange data for swapping (srcAmount will be amount of coll token sold)
/// @param to address which will receive any leftovers if amount received from selling is greater than debt
/// @param gasUsed info for automated strategy gas reimbursement
struct Params {
address controllerAddress;
uint256 controllerId;
DFSExchangeData.ExchangeData exData;
address to;
uint32 gasUsed;
}