Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/interfaces/IFollowModule.sol
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ interface IFollowModule {
* @param targetProfileId The token ID of the profile being followed.
* @param data Arbitrary data passed by the follower.
*
* @return bytes Any custom ABI-encoded data. This will be a LensHub event params that can be used by
* @return bytes Any custom ABI-encoded data. This will be a LensHub event param that can be used by
* indexers or UIs.
*/
function processFollow(
Expand Down
4 changes: 2 additions & 2 deletions contracts/interfaces/IPublicationActionModule.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ interface IPublicationActionModule {
* @param transactionExecutor The address of the transaction executor (e.g. for any funds to transferFrom).
* @param data Arbitrary data passed from the user to be decoded by the Action Module during initialization.
*
* @return bytes Any custom ABI-encoded data. This will be a LensHub event params that can be used by
* @return bytes Any custom ABI-encoded data. This will be a LensHub event param that can be used by
* indexers or UIs.
*/
function initializePublicationAction(
Expand All @@ -44,7 +44,7 @@ interface IPublicationActionModule {
*
* @param processActionParams The parameters needed to execute the publication action.
*
* @return bytes Any custom ABI-encoded data. This will be a LensHub event params that can be used by
* @return bytes Any custom ABI-encoded data. This will be a LensHub event param that can be used by
* indexers or UIs.
*/
function processPublicationAction(Types.ProcessActionParams calldata processActionParams)
Expand Down
8 changes: 4 additions & 4 deletions contracts/interfaces/IReferenceModule.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ interface IReferenceModule {
* @param transactionExecutor The address of the transaction executor (e.g. for any funds to transferFrom).
* @param data Arbitrary data passed from the user to be decoded by the Reference Module during initialization.
*
* @return bytes Any custom ABI-encoded data. This will be a LensHub event params that can be used by
* @return bytes Any custom ABI-encoded data. This will be a LensHub event param that can be used by
* indexers or UIs.
*/
function initializeReferenceModule(
Expand All @@ -41,7 +41,7 @@ interface IReferenceModule {
*
* @param processCommentParams The parameters for processing a comment.
*
* @return bytes Any custom ABI-encoded data. This will be a LensHub event params that can be used by
* @return bytes Any custom ABI-encoded data. This will be a LensHub event param that can be used by
* indexers or UIs.
*/
function processComment(Types.ProcessCommentParams calldata processCommentParams) external returns (bytes memory);
Expand All @@ -53,7 +53,7 @@ interface IReferenceModule {
*
* @param processQuoteParams The parameters for processing a quote.
*
* @return bytes Any custom ABI-encoded data. This will be a LensHub event params that can be used by
* @return bytes Any custom ABI-encoded data. This will be a LensHub event param that can be used by
* indexers or UIs.
*/
function processQuote(Types.ProcessQuoteParams calldata processQuoteParams) external returns (bytes memory);
Expand All @@ -65,7 +65,7 @@ interface IReferenceModule {
*
* @param processMirrorParams The parameters for processing a mirror.
*
* @return bytes Any custom ABI-encoded data. This will be a LensHub event params that can be used by
* @return bytes Any custom ABI-encoded data. This will be a LensHub event param that can be used by
* indexers or UIs.
*/
function processMirror(Types.ProcessMirrorParams calldata processMirrorParams) external returns (bytes memory);
Expand Down
4 changes: 2 additions & 2 deletions contracts/modules/interfaces/ICollectModule.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ interface ICollectModule {
* @param transactionExecutor The owner or an approved delegated executor.
* @param data Arbitrary data __passed from the user!__ to be decoded.
*
* @return bytes Any custom ABI-encoded data. This will be a LensHub event params that can be used by
* @return bytes Any custom ABI-encoded data. This will be a LensHub event param that can be used by
* indexers or UIs.
*/
function initializePublicationCollectModule(
Expand All @@ -41,7 +41,7 @@ interface ICollectModule {
*
* @param processCollectParams The parameters for the collect action.
*
* @return bytes Any custom ABI-encoded data. This will be a LensHub event params that can be used by
* @return bytes Any custom ABI-encoded data. This will be a LensHub event param that can be used by
* indexers or UIs.
*/
function processCollect(
Expand Down