Skip to content
Merged
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: 2 additions & 0 deletions checkProxy.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: GPL-3.0-only

if [ -z "$1" ]; then
echo "Usage: $0 <proxy-address>"
exit 1
Expand Down
3 changes: 1 addition & 2 deletions contracts/actions/account/TippingAccountAction.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {OwnableMetadataBasedAccountAction} from "contracts/actions/account/base/OwnableMetadataBasedAccountAction.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/actions/account/base/BaseAccountAction.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {KeyValue} from "contracts/core/types/Types.sol";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {Ownable} from "contracts/core/access/Ownable.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/actions/base/BaseAction.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {UNIVERSAL_ACTION_MAGIC_VALUE} from "contracts/extensions/actions/ActionHub.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/actions/post/TippingPostAction.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {OwnableMetadataBasedPostAction} from "contracts/actions/post/base/OwnableMetadataBasedPostAction.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/actions/post/base/BasePostAction.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {KeyValue} from "contracts/core/types/Types.sol";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {Ownable} from "contracts/core/access/Ownable.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/actions/post/collect/ISimpleCollectAction.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {IPostAction} from "contracts/extensions/actions/ActionHub.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/actions/post/collect/LensCollectedPost.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import "contracts/core/base/LensERC721.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/actions/post/collect/SimpleCollectAction.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {ISimpleCollectAction, CollectActionData} from "contracts/actions/post/collect/ISimpleCollectAction.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/access/AccessControlled.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {IAccessControl} from "contracts/core/interfaces/IAccessControl.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/access/Ownable.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {Errors} from "contracts/core/types/Errors.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/access/RoleBasedAccessControl.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {Access, IRoleBasedAccessControl, Role} from "contracts/core/interfaces/IRoleBasedAccessControl.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/base/BaseSource.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {ISource} from "contracts/core/interfaces/ISource.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/base/LensERC721.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
// Modified from OpenZeppelin's v4.9.0 contracts
pragma solidity ^0.8.26;

Expand Down
3 changes: 1 addition & 2 deletions contracts/core/base/RuleBasedPrimitive.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {RulesStorage, RulesLib} from "contracts/core/libraries/RulesLib.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IAccessControl.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

interface IAccessControl {
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IAccessControlled.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {IAccessControl} from "contracts/core/interfaces/IAccessControl.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IAccountGroupAdditionSettings.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {KeyValue} from "contracts/core/types/Types.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IERC4906Events.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

library IERC4906Events {
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IERC721Namespace.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IFeed.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {KeyValue, Rule, RuleProcessingParams, RuleChange} from "contracts/core/types/Types.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IFeedRule.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {CreatePostParams, EditPostParams} from "contracts/core/interfaces/IFeed.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IFollowRule.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {KeyValue} from "contracts/core/types/Types.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IGraph.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {RuleProcessingParams, KeyValue, RuleChange, Rule} from "contracts/core/types/Types.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IGraphRule.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {KeyValue, RuleChange} from "contracts/core/types/Types.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IGroup.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {KeyValue, RuleChange, RuleProcessingParams, Rule} from "contracts/core/types/Types.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IGroupRule.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {KeyValue} from "contracts/core/types/Types.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/ILock.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

interface ILock {
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IMetadataBased.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

interface IMetadataBased {
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/INamespace.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {KeyValue, RuleChange, RuleProcessingParams, Rule} from "contracts/core/types/Types.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/INamespaceRule.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {KeyValue} from "contracts/core/types/Types.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IOwnable.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

interface IOwnable {
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IPostRule.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {CreatePostParams, EditPostParams} from "contracts/core/interfaces/IFeed.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IRequestBasedGroupRule.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {IGroupRule} from "contracts/core/interfaces/IGroupRule.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IRoleBasedAccessControl.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {IAccessControl} from "contracts/core/interfaces/IAccessControl.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/ISource.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {SourceStamp} from "contracts/core/types/Types.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/ITokenURIProvider.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

interface ITokenURIProvider {
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/interfaces/IVersionedBeacon.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

interface IVersionedBeacon {
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/libraries/AccessControlLib.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {IAccessControl} from "contracts/core/interfaces/IAccessControl.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/libraries/CallLib.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {Errors} from "contracts/core/types/Errors.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/libraries/EIP712EncodingLib.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {KeyValue, RuleChange, RuleConfigurationChange, RuleSelectorChange} from "contracts/core/types/Types.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/libraries/KeyValueLib.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {KeyValue} from "../types/Types.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/libraries/KeyValueStorageLib.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {KeyValue} from "contracts/core/types/Types.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/libraries/RulesLib.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {Rule, RuleChange, RuleSelectorChange} from "contracts/core/types/Types.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/primitives/feed/Feed.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {IFeed, Post, EditPostParams, CreatePostParams} from "contracts/core/interfaces/IFeed.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/primitives/feed/FeedCore.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {EditPostParams, CreatePostParams} from "contracts/core/interfaces/IFeed.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/primitives/feed/RuleBasedFeed.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {IPostRule} from "contracts/core/interfaces/IPostRule.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/primitives/graph/Graph.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {Follow, IGraph} from "contracts/core/interfaces/IGraph.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/primitives/graph/GraphCore.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {Follow} from "contracts/core/interfaces/IGraph.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/primitives/graph/RuleBasedGraph.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {IFollowRule} from "contracts/core/interfaces/IFollowRule.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/primitives/group/Group.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {Membership, IGroup} from "contracts/core/interfaces/IGroup.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/primitives/group/GroupCore.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {Membership} from "contracts/core/interfaces/IGroup.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/primitives/group/RuleBasedGroup.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {IGroupRule} from "contracts/core/interfaces/IGroupRule.sol";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {ITokenURIProvider} from "contracts/core/interfaces/ITokenURIProvider.sol";
Expand Down
3 changes: 1 addition & 2 deletions contracts/core/primitives/namespace/Namespace.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.26;

import {NamespaceCore as Core} from "contracts/core/primitives/namespace/NamespaceCore.sol";
Expand Down
Loading
Loading