mirror of
https://github.com/lens-protocol/core.git
synced 2026-01-10 14:48:15 -05:00
8 lines
196 B
Solidity
8 lines
196 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.15;
|
|
|
|
interface IProfileTokenURI {
|
|
function getTokenURI(uint256 profileId, uint256 mintTimestamp) external view returns (string memory);
|
|
}
|