Skip to content

Commit

Permalink
Update ERC-6909: update interfaceId
Browse files Browse the repository at this point in the history
Merged by EIP-Bot.
  • Loading branch information
jtriley-eth authored Nov 25, 2023
1 parent e7bd101 commit 7cf426e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ERCS/erc-6909.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ The `safeTransfer` and `safeTransferFrom` naming conventions are misleading, esp

### Interface ID

The interface ID is `0xb2e69f8a`.
The interface ID is `0x0f632fb3`.

### Metadata Extension

Expand Down Expand Up @@ -542,7 +542,7 @@ contract ERC6909 {
/// @param interfaceId The interface identifier, as specified in ERC-165.
/// @return supported True if the contract implements `interfaceId`.
function supportsInterface(bytes4 interfaceId) public pure returns (bool supported) {
return interfaceId == 0xb2e69f8a || interfaceId == 0x01ffc9a7;
return interfaceId == 0x0f632fb3 || interfaceId == 0x01ffc9a7;
}

function _mint(address receiver, uint256 id, uint256 amount) internal {
Expand Down

0 comments on commit 7cf426e

Please sign in to comment.