From 738c50665f8b7243286939682adafc18297db8ef Mon Sep 17 00:00:00 2001 From: Schlagonia Date: Wed, 25 Oct 2023 16:02:50 -0600 Subject: [PATCH] fix: license --- contracts/Strategy.sol | 2 +- contracts/interfaces/IStrategyInterface.sol | 2 +- contracts/periphery/StrategyAprOracle.sol | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/Strategy.sol b/contracts/Strategy.sol index d6b46c8..4f6b3c6 100644 --- a/contracts/Strategy.sol +++ b/contracts/Strategy.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: GPL-3.0 +// SPDX-License-Identifier: AGPL-3.0 pragma solidity 0.8.18; import {BaseStrategy, ERC20} from "@tokenized-strategy/BaseStrategy.sol"; diff --git a/contracts/interfaces/IStrategyInterface.sol b/contracts/interfaces/IStrategyInterface.sol index de2f38c..49799ba 100644 --- a/contracts/interfaces/IStrategyInterface.sol +++ b/contracts/interfaces/IStrategyInterface.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: GPL-3.0 +// SPDX-License-Identifier: AGPL-3.0 pragma solidity 0.8.18; import {IStrategy} from "@tokenized-strategy/interfaces/IStrategy.sol"; diff --git a/contracts/periphery/StrategyAprOracle.sol b/contracts/periphery/StrategyAprOracle.sol index 6b9be9e..ac2ae6e 100644 --- a/contracts/periphery/StrategyAprOracle.sol +++ b/contracts/periphery/StrategyAprOracle.sol @@ -1,4 +1,4 @@ -// SPDX-License-Identifier: GPL-3.0 +// SPDX-License-Identifier: AGPL-3.0 pragma solidity 0.8.18; import {AprOracleBase} from "@periphery/AprOracle/AprOracleBase.sol";