Files
core/contracts/interfaces/IHandleTokenURI.sol
2023-11-14 13:05:48 -03:00

12 lines
250 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.15;
interface IHandleTokenURI {
function getTokenURI(
uint256 tokenId,
string memory localName,
string memory namespace
) external view returns (string memory);
}