For the complete documentation index, see llms.txt. This page is also available as Markdown.

IMulticall

// SPDX-License-Identifier: Unlicense
pragma solidity 0.8.17;

interface IMulticall {
    function multicall(bytes4[] calldata selectors, bytes[] calldata data) external;
}