const eulerV2BorrowAction = new dfs.actions.eulerV2.EulerV2BorrowAction(
vault,
account,
receiver,
amount
);
Action Type
STANDARD_ACTION
Input Parameters
/// @param vault The address of the Euler vault
/// @param account The address of the Euler account, defaults to user's wallet
/// @param receiver The address to receive the borrowed assets
/// @param amount The amount of assets to borrow
struct Params {
address vault;
address account;
address receiver;
uint256 amount;
}