mirror of
https://github.com/lens-protocol/core.git
synced 2026-01-10 14:48:15 -05:00
12 lines
250 B
Solidity
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);
|
|
}
|