Skip to content

Commit

Permalink
chore: replace license to BUSL (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtekgrinder authored Aug 27, 2024
1 parent 476608f commit d514693
Show file tree
Hide file tree
Showing 18 changed files with 89 additions and 663 deletions.
716 changes: 71 additions & 645 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contracts/BaseStrategy.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.26;

import { ERC4626, IERC20, ERC20, Math } from "oz/token/ERC20/extensions/ERC4626.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/ERC4626Strategy.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.26;

import { BaseStrategy, ERC4626, Math } from "./BaseStrategy.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/utils/Errors.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: BUSL-1.1

pragma solidity >=0.8.0;

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "angle-boilerplate",
"name": "angle-integration-strategies",
"version": "1.0.0",
"description": "",
"scripts": {
Expand Down Expand Up @@ -28,7 +28,7 @@
},
"keywords": [],
"author": "Angle Core Team",
"license": "GPL-3.0",
"license": "BUSL-1.1",
"bugs": {
"url": "https://github.com/AngleProtocol/boilerplate/issues"
},
Expand Down
2 changes: 1 addition & 1 deletion scripts/DeployER4626Strategy.s.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.19;

import { ERC4626Strategy, BaseStrategy } from "../contracts/ERC4626Strategy.sol";
Expand Down
2 changes: 1 addition & 1 deletion scripts/DepositPayloadScript.s.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-License-Identifier: Unlicensed
pragma solidity >=0.8.20;

import { Script } from "forge-std/Script.sol";
Expand Down
2 changes: 1 addition & 1 deletion scripts/WithdrawPayloadScript.s.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-or-later
// SPDX-License-Identifier: Unlicensed
pragma solidity >=0.8.20;

import { Script } from "forge-std/Script.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/ERC4626StrategyTest.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: Unlicensed
pragma solidity 0.8.26;

import "./BaseTest.t.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/invariant/BasicInvariants.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.8.19;

Expand Down
2 changes: 1 addition & 1 deletion test/invariant/actors/BaseActor.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.19;

import "../../Constants.t.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/invariant/actors/Developer.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.19;

import "./BaseActor.t.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/invariant/actors/Integrator.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.19;

import "./BaseActor.t.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/invariant/actors/Keeper.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.19;

import { UtilsLib } from "morpho/libraries/UtilsLib.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/invariant/actors/Param.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.19;

import "./BaseActor.t.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/invariant/actors/User.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.19;

import { UtilsLib } from "morpho/libraries/UtilsLib.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/invariant/stores/StateVariableStore.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.8.19;

Expand Down
2 changes: 1 addition & 1 deletion test/invariant/stores/VestingStore.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: Unlicensed

pragma solidity ^0.8.19;

Expand Down

0 comments on commit d514693

Please sign in to comment.