LiquityV2Supply
Last updated
/// @param market The address of the LiquityV2 market (collateral branch)
/// @param from The address to pull the tokens from
/// @param troveId The ID of the trove to supply the tokens to
/// @param amount The amount of tokens to supply
struct Params {
address market;
address from;
uint256 troveId;
uint256 amount;
}return bytes32(amount);emit ActionEvent("LiquityV2Supply", logData);
logger.logActionDirectEvent("LiquityV2Supply", logData);
bytes memory logData = abi.encode(params);