Skip to content

Commit 015bae6

Browse files
huaweigujaypaik
authored andcommitted
chore: update license (#219)
1 parent 681bd59 commit 015bae6

File tree

82 files changed

+103
-755
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+103
-755
lines changed

LICENSE

Lines changed: 21 additions & 674 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 1 deletion

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
"lint:src": "solhint --max-warnings 0 -c .solhint-src.json './src/**/*.sol'",
1111
"lint:test": "solhint --max-warnings 0 -c .solhint-test.json './test/**/*.sol'",
1212
"lint:script": "solhint --max-warnings 0 -c .solhint-script.json './script/**/*.sol'"
13-
}
13+
},
14+
"license": "MIT"
1415
}

script/Deploy.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: GPL-3.0
1+
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.20;
33

44
import {IEntryPoint} from "@eth-infinitism/account-abstraction/interfaces/IEntryPoint.sol";

script/DeployAllowlistModule.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: GPL-3.0
1+
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.20;
33

44
import {Script, console} from "forge-std/Script.sol";

src/account/AccountExecutor.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: GPL-3.0
1+
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.20;
33

44
abstract contract AccountExecutor {

src/account/AccountFactory.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: GPL-3.0
1+
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.20;
33

44
import {IEntryPoint} from "@eth-infinitism/account-abstraction/interfaces/IEntryPoint.sol";

src/account/AccountStorage.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: GPL-3.0
1+
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.20;
33

44
import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";

src/account/AccountStorageInitializable.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: GPL-3.0
1+
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.20;
33

44
import {AccountStorage, getAccountStorage} from "./AccountStorage.sol";

src/account/ModularAccountView.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// SPDX-License-Identifier: GPL-3.0
1+
// SPDX-License-Identifier: MIT
22
pragma solidity ^0.8.20;
33

44
import {UUPSUpgradeable} from "@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol";

0 commit comments

Comments
 (0)