Skip to content

Instantly share code, notes, and snippets.

View mpeyfuss's full-sized avatar

Marco mpeyfuss

View GitHub Profile
@mpeyfuss
mpeyfuss / IERC7160.sol
Last active July 29, 2023 16:35
ERC-7160
// 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);