Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Commit

Permalink
stray MITs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramarti committed Feb 24, 2024
1 parent 8694e2b commit ebe4492
Show file tree
Hide file tree
Showing 23 changed files with 28 additions and 28 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { IModule } from "../base/IModule.sol";
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{
"name": "solidity-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"name": "@story-protocol/contracts",
"version": "0.3.0",
"description": "Story Protocol smart contracts",
"main": "",
"directories": {
"lib": "lib",
"test": "test"
},
"author": "StoryProtocol",
"license": "BUSL-1.1",
"scripts": {
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
Expand All @@ -19,8 +21,6 @@
"prepare": "husky install",
"docgen": "hardhat docgen"
},
"author": "StoryProtocol",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/AccessController.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { IIPAccount } from "../../contracts/interfaces/IIPAccount.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/IPAccount.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { IERC6551Account } from "erc6551/interfaces/IERC6551Account.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/IPAccountMetaTx.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { MessageHashUtils } from "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/access/AccessControlled.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { IIPAccount } from "contracts/interfaces/IIPAccount.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/governance/Governance.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { IIPAccount } from "../../../contracts/interfaces/IIPAccount.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/mocks/CustomModuleType.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { IModule } from "contracts/interfaces/modules/base/IModule.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/mocks/MockAccessControlledModule.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { IModule } from "contracts/interfaces/modules/base/IModule.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/mocks/MockTokenGatedHook.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { IERC165 } from "@openzeppelin/contracts/utils/introspection/ERC165.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/mocks/access/MockAccessController.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { IAccessController } from "contracts/interfaces/IAccessController.sol";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

// contracts
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/mocks/module/MockMetaTxModule.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { ERC165Checker } from "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/mocks/module/MockModule.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { ERC165Checker } from "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/mocks/module/MockOrchestratorModule.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { ERC165Checker } from "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/modules/ModuleBase.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { IModule } from "contracts/interfaces/modules/base/IModule.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/registries/IPAccountRegistry.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { IPAccountImpl } from "../../../contracts/IPAccountImpl.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/registries/IPAssetRegistry.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { IIPAssetRegistry } from "contracts/interfaces/registries/IIPAssetRegistry.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/registries/ModuleRegistry.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { Errors } from "contracts/lib/Errors.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/registries/metadata/IPAssetRenderer.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { Strings } from "@openzeppelin/contracts/utils/Strings.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/registries/metadata/MetadataProvider.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { IP } from "contracts/lib/IP.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/resolvers/IPResolver.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { ResolverBaseTest } from "test/foundry/resolvers/ResolverBase.t.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/foundry/resolvers/ResolverBase.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: MIT
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.23;

import { IResolver } from "contracts/interfaces/resolvers/IResolver.sol";
Expand Down

0 comments on commit ebe4492

Please sign in to comment.