浏览代码

Update docs

github-actions 3 年之前
父节点
当前提交
d75a9e5480
共有 2 个文件被更改,包括 3 次插入2 次删除
  1. 1 1
      contracts/interfaces/IERC2981.sol
  2. 2 1
      contracts/token/ERC20/extensions/ERC20FlashMint.sol

+ 1 - 1
contracts/interfaces/IERC2981.sol

@@ -3,7 +3,7 @@
 
 pragma solidity ^0.8.0;
 
-import "./IERC165.sol";
+import "../utils/introspection/IERC165.sol";
 
 /**
  * @dev Interface for the NFT Royalty Standard.

+ 2 - 1
contracts/token/ERC20/extensions/ERC20FlashMint.sol

@@ -3,7 +3,8 @@
 
 pragma solidity ^0.8.0;
 
-import "../../../interfaces/IERC3156.sol";
+import "../../../interfaces/IERC3156FlashBorrower.sol";
+import "../../../interfaces/IERC3156FlashLender.sol";
 import "../ERC20.sol";
 
 /**