Hashtags
Full hashtag support and indexing for user and group posts.
This smart contract, Hashtags
, serves the purpose of keeping a list of messages IDs linked to different hashtags. These hashtags are used in KUTHULU posts.
This contract inherits from Initializable
, PausableUpgradeable
, and OwnableUpgradeable
from the OpenZeppelin library.
Table of Contents
Public Functions
GetMsgIDsFromHashtag
This function is used for querying a list of messages that have used a specific hashtag. In KUTHULU, it can be used to track posts related to certain trending topics by searching for the specific hashtags.
Function
Inputs
Name
Type
Description
hashtag
string
The hashtag to retrieve messages from
startFrom
uint256
The ID to start getting records from
Outputs
Name
Type
Description
returns
uint256[]
An array of message IDs that have used the hashtag
Usage
Last updated