Skip to content

Commit

Permalink
chore:update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Albert committed Aug 31, 2023
1 parent f01c5d5 commit a067791
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions contracts/interfaces/IWeb3Entry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -111,16 +111,18 @@ interface IWeb3Entry {
) external;

/**
* @notice Sets a new metadataURI for a given link list.
* @param linkListId The linklist id to set for.
* @param uri The metadata uri to set.
* @notice Sets a new metadataURI for a given link list.
* @param linkListId The linklist id to set for.
* @param uri The metadata uri to set.
*/
function setLinklistUri(uint256 linkListId, string calldata uri) external;

/**
* @notice Sets a link type for a given linklist.
* @dev Linklist is the group of all linking objects with the same link type, like "like".
* Each character can only have one linklist for each link type.
* @dev Emits a {DetachLinklist} event and a {AttachLinklist} event from web3Entry contract..<br>
* Emits a {LinkTypeSet} event from linklist contract.<br>
* Linklist is the group of all linking objects with the same link type, like "like".<br>
* Each character can only have one linklist for each link type.<br>
* It will fail if you try to set a link type which is already set for some linklist owned by the same character.
* @param linkListId The linklist ID to set for.
* @param linkType The link type to set.
Expand Down

0 comments on commit a067791

Please sign in to comment.