Skip to content

Commit

Permalink
fix: license (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlagonia authored Oct 25, 2023
1 parent b41c2c6 commit 81a47eb
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion src/AprOracle/AprOracle.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;

import {IVault} from "@yearn-vaults/interfaces/IVault.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/AprOracle/AprOracleBase.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;

import {Governance} from "../utils/Governance.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/HealthCheck/BaseHealthCheck.sol
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion src/HealthCheck/IBaseHealthCheck.sol
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion src/ReportTrigger/CommonReportTrigger.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;

import {Governance} from "../utils/Governance.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/ReportTrigger/CustomStrategyTriggerBase.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/ReportTrigger/CustomVaultTriggerBase.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/swappers/SolidlySwapper.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/swappers/TradeFactorySwapper.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/swappers/UniswapV2Swapper.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/swappers/UniswapV3Swapper.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/swappers/interfaces/ISolidlySwapper.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;

interface ISolidlySwapper {
Expand Down
2 changes: 1 addition & 1 deletion src/swappers/interfaces/ITradeFactorySwapper.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;

interface ITradeFactorySwapper {
Expand Down
2 changes: 1 addition & 1 deletion src/swappers/interfaces/IUniswapV2Swapper.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;

interface IUniswapV2Swapper {
Expand Down
2 changes: 1 addition & 1 deletion src/swappers/interfaces/IUniswapV3Swapper.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;

interface IUniswapV3Swapper {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/Governance.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: GPL-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.18;

contract Governance {
Expand Down

0 comments on commit 81a47eb

Please sign in to comment.