Skip to content

Commit

Permalink
Update EIP-5507: Fix file names (#6282)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pandapip1 authored Jan 6, 2023
1 parent cc3c767 commit 23c08bf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions EIPS/eip-5507.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -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`
Expand Down Expand Up @@ -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`
Expand Down

0 comments on commit 23c08bf

Please sign in to comment.