소스 검색

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";
 
 /**