LpLockerv2
User Functions
// note: will revert if not called by the token's admin
function updateCreatorRewardAdmin(
uint256 tokenId, // Token ID to update
address newAdmin // New administrator address
) public {...}// note: will revert if not called by the token's admin
function updateCreatorRewardRecipient(
uint256 tokenId, // Token ID to update
address newRecipient // New reward recipient
) public {...}// note: callable by anyone
function claimRewards(
uint256 tokenId // Token ID for claiming rewards
) public {...}Last updated