This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity 0.8.19; | |
/// @title EIP-721 Multi-Metdata Extension | |
/// Note: the ERC-165 identifier for this interface is 0x06e1bc5b. | |
interface IERC7160 { | |
/// @dev This event emits when the token uris for a token have been updated | |
/// @dev This event MUST be emitted whenever a token uri is added, modified, or removed. | |
event TokenUrisUpdated(uint256 indexed tokenId); |