diff --git a/contracts/interfaces/IERC2981Upgradeable.sol b/contracts/interfaces/IERC2981Upgradeable.sol index def387510..c69cf54d7 100644 --- a/contracts/interfaces/IERC2981Upgradeable.sol +++ b/contracts/interfaces/IERC2981Upgradeable.sol @@ -3,7 +3,7 @@ pragma solidity ^0.8.0; -import "./IERC165Upgradeable.sol"; +import "../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Interface for the NFT Royalty Standard. diff --git a/contracts/token/ERC20/extensions/ERC20FlashMintUpgradeable.sol b/contracts/token/ERC20/extensions/ERC20FlashMintUpgradeable.sol index 3c7e5611b..daa482705 100644 --- a/contracts/token/ERC20/extensions/ERC20FlashMintUpgradeable.sol +++ b/contracts/token/ERC20/extensions/ERC20FlashMintUpgradeable.sol @@ -3,7 +3,8 @@ pragma solidity ^0.8.0; -import "../../../interfaces/IERC3156Upgradeable.sol"; +import "../../../interfaces/IERC3156FlashBorrowerUpgradeable.sol"; +import "../../../interfaces/IERC3156FlashLenderUpgradeable.sol"; import "../ERC20Upgradeable.sol"; import "../../../proxy/utils/Initializable.sol";