From 0580c312610384c1f6fa1f89f8eebfd6852c944e Mon Sep 17 00:00:00 2001 From: Kingter <83567446+kingster-will@users.noreply.github.com> Date: Tue, 10 Dec 2024 08:55:59 -0800 Subject: [PATCH] Correct code license to BUSL (#338) --- contracts/interfaces/IIPAccountStorage.sol | 3 +-- contracts/interfaces/modules/base/IViewModule.sol | 3 +-- contracts/lib/IPAccountStorageOps.sol | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/contracts/interfaces/IIPAccountStorage.sol b/contracts/interfaces/IIPAccountStorage.sol index 59f81ecfe..9b2511ab5 100644 --- a/contracts/interfaces/IIPAccountStorage.sol +++ b/contracts/interfaces/IIPAccountStorage.sol @@ -1,5 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED -// See https://github.com/storyprotocol/protocol-contracts/blob/main/StoryProtocol-AlphaTestingAgreement-17942166.3.pdf +// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.26; import { IERC165 } from "@openzeppelin/contracts/utils/introspection/ERC165.sol"; diff --git a/contracts/interfaces/modules/base/IViewModule.sol b/contracts/interfaces/modules/base/IViewModule.sol index 68058ea05..6388c35e0 100644 --- a/contracts/interfaces/modules/base/IViewModule.sol +++ b/contracts/interfaces/modules/base/IViewModule.sol @@ -1,5 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED -// See https://github.com/storyprotocol/protocol-contracts/blob/main/StoryProtocol-AlphaTestingAgreement-17942166.3.pdf +// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.26; import { IModule } from "./IModule.sol"; diff --git a/contracts/lib/IPAccountStorageOps.sol b/contracts/lib/IPAccountStorageOps.sol index 8115db4d8..986c17add 100644 --- a/contracts/lib/IPAccountStorageOps.sol +++ b/contracts/lib/IPAccountStorageOps.sol @@ -1,5 +1,4 @@ -// SPDX-License-Identifier: UNLICENSED -// See https://github.com/storyprotocol/protocol-contracts/blob/main/StoryProtocol-AlphaTestingAgreement-17942166.3.pdf +// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.26; import { IIPAccountStorage } from "../interfaces/IIPAccountStorage.sol";