Get the creatorId by token ID
function creatorIdOf(uint256 tokenId) external view
Similar to creatorIdOf(), supports batch operations
function creatorIdsOf(uint256[] calldata tokenIds) external view
creatorIdsOfOwner
Get the creatorIds by owner address
function creatorIdsOfOwner(address tokenOwner) external view
Mint the Profile Key NFT
function mint(address to, uint256 amount, uint256 creatorId) external onlyFarcasterKeys
The address that receives the NFTs
The amount of Minted NFTs
The creator's Farcaster ID
Burn the profile Key NFT
function burn(uint256 tokenId) external onlyFarcasterKeys
the ID of the profile key NFT
Get the amount of minted NFTs
function totalMinted() external view
Get the amount of burned NFTs
function totalBurned() external view
Set the base image URI of NFT
function setBaseURI(string memory newBasURI) external onlyOwner