bom-contracts/contracts/interfaces/INFTMetadata.sol

10 lines
229 B
Solidity
Raw Permalink Normal View History

2022-10-19 10:05:23 +00:00
// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity ^0.8.14;
import "./INFT.sol";
interface INFTMetadata {
function tokenURI(uint256 tokenId, INFT.TokenInfo memory token) external view returns (string memory);
}