forked from DecentralizedClimateFoundation/DCIPs
6 lines
128 B
Solidity
6 lines
128 B
Solidity
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
interface IDescriptor {
|
||
|
function tokenURI(uint256 tokenId) external view returns (string memory);
|
||
|
}
|