// Source: contracts/interfaces/IReentrancyGuard.sol pragma solidity ^0.8.0; // SPDX-License-Identifier: MIT // File contracts/interfaces/IReentrancyGuard.sol /** * @title ReentrancyGuard * @notice This contract provides a mechanism to halt the execution of specific functions * if a pause condition is activated. */ interface IReentrancyGuard { error ReentrantCall(); }