GroupPosts
Posts made into Groups / Spaces
Last updated
Posts made into Groups / Spaces
Last updated
The GroupPosts contract is a smart contract that allows managing group posts. It provides functionalities for adding, removing, and retrieving messages that are posted in a group.
This event is emitted whenever a post is added to a group.
This event is emitted whenever a post is removed from a group.
This function can be used to retrieve a list of messages posted in a specific group / space. It provides a mechanism for browsing group messages by starting from a specific index, allowing for efficient navigation through large amounts of posts.
Inputs
groupID
uint256
The ID of the group / space to get a list of posts for.
startFrom
uint256
The index from where to start getting records.
Outputs
uint256[]
An array
An array of message IDs.
Example