Merge master into next-v5.0 (#3980)

This commit is contained in:
Francisco
2023-01-24 19:48:49 -03:00
committed by GitHub
64 changed files with 4307 additions and 715 deletions

View File

@ -13,6 +13,7 @@ import "./Address.sol";
abstract contract Multicall {
/**
* @dev Receives and executes a batch of function calls on this contract.
* @custom:oz-upgrades-unsafe-allow-reachable delegatecall
*/
function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) {
results = new bytes[](data.length);