IERC1155MetadataURI.sol 363 B

12345678910111213
  1. // SPDX-License-Identifier: MIT
  2. pragma solidity ^0.6.2;
  3. import "./IERC1155.sol";
  4. /**
  5. * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
  6. * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
  7. */
  8. interface IERC1155MetadataURI is IERC1155 {
  9. function uri(uint256 id) external view returns (string memory);
  10. }