You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
363 B
14 lines
363 B
5 years ago
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
pragma solidity ^0.6.2;
|
||
|
|
||
|
import "./IERC1155.sol";
|
||
|
|
||
|
/**
|
||
|
* @dev Interface of the optional ERC1155MetadataExtension interface, as defined
|
||
|
* in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
|
||
|
*/
|
||
|
interface IERC1155MetadataURI is IERC1155 {
|
||
|
function uri(uint256 id) external view returns (string memory);
|
||
|
}
|