mirror of
https://github.com/lens-protocol/core.git
synced 2026-04-22 03:02:03 -04:00
12 lines
266 B
Solidity
12 lines
266 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.15;
|
|
|
|
interface IFollowTokenURI {
|
|
function getTokenURI(
|
|
uint256 followTokenId,
|
|
uint256 followedProfileId,
|
|
uint256 originalFollowTimestamp
|
|
) external pure returns (string memory);
|
|
}
|