From 23c08bfb8cbf4855e402d35de75c7d9f951f8703 Mon Sep 17 00:00:00 2001 From: Pandapip1 <45835846+Pandapip1@users.noreply.github.com> Date: Fri, 6 Jan 2023 15:46:58 -0500 Subject: [PATCH] Update EIP-5507: Fix file names (#6282) --- EIPS/eip-5507.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/EIPS/eip-5507.md b/EIPS/eip-5507.md index 6d6c987de7..e329cde7ff 100644 --- a/EIPS/eip-5507.md +++ b/EIPS/eip-5507.md @@ -30,8 +30,8 @@ The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL pragma solidity ^0.8.17; -import "IERC20.sol"; -import "IERC165.sol"; +import "ERC20.sol"; +import "ERC165.sol"; /// @notice Refundable EIP-20 tokens /// @dev The EIP-165 identifier of this interface is `0xf0ca2917` @@ -67,8 +67,8 @@ interface ERC20Refund is ERC20, ERC165 { pragma solidity ^0.8.17; -import "IERC721.sol"; -import "IERC165.sol"; +import "ERC721.sol"; +import "ERC165.sol"; /// @notice Refundable EIP-721 tokens /// @dev The EIP-165 identifier of this interface is `0xe97f3c83` @@ -106,8 +106,8 @@ interface ERC721Refund is ERC721 /* , ERC165 */ { pragma solidity ^0.8.17; -import "IERC1155.sol"; -import "IERC165.sol"; +import "ERC1155.sol"; +import "ERC165.sol"; /// @notice Refundable EIP-1155 tokens /// @dev The EIP-165 identifier of this interface is `0x94029f5c`