Last updated 11 months ago
Inherits:
This function allows multiple calls to different contract functions in a single transaction.
function multicall(bytes[] calldata data) external returns (bytes[] memory results);
Parameters
data
bytes[]
An array of encoded function call data.
Returns
results
An array of the results of the function calls.