// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title ForwarderInterface - forwards a call to a target, under some conditions // solhint-disable-next-line interface-starts-with-i interface ForwarderInterface { /** * @notice forward calls the `target` with `data` * @param target contract address to be called * @param data to send to target contract */ function forward(address target, bytes memory data) external; }