/// @param emodeId Type of emode we are entering in, each one is different deployment on Morpho
/// @param tokenAddr The address of the token to be deposited
/// @param amount Amount of tokens to be deposited
/// @param from Where are we pulling the supply tokens amount from
/// @param onBehalf For what user we are supplying the tokens, defaults to user's wallet
/// @param supplyAsColl Whether to supplyAsCollateral or regular supply
/// @param maxIterations Max number of iterations for p2p matching, 0 will use default num of iterations
struct Params {
uint256 emodeId;
address tokenAddr;
uint256 amount;
address from;
address onBehalf;
bool supplyAsColl;
uint256 maxIterations;
}