2023-06-26 11:26:41 +08:00

10 lines
187 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;
interface IMetaData {
function getMetaData(
address token,
uint256 tokenId
) external view returns (string memory);
}