Skip to content

Commit

Permalink
Merge pull request #197 from aave/fix/capitalize-contracts-licenses
Browse files Browse the repository at this point in the history
fix: Capitalize license names of contracts
  • Loading branch information
Steven Valeri authored Dec 14, 2022
2 parents 3df16f4 + cfe7ab3 commit 3d5c322
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;

import {WadRayMath} from '@aave/core-v3/contracts/protocol/libraries/math/WadRayMath.sol';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.10;

import {IGhoDiscountRateStrategy} from '../tokens/interfaces/IGhoDiscountRateStrategy.sol';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.7.5;
pragma experimental ABIEncoderV2;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.7.5;

interface IGhoVariableDebtToken {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.10;

import {SafeCast} from '@aave/core-v3/contracts/dependencies/openzeppelin/contracts/SafeCast.sol';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;

interface IAaveIncentivesController {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;

import {IAToken} from '@aave/core-v3/contracts/interfaces/IAToken.sol';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
import {IVariableDebtToken} from '@aave/core-v3/contracts/interfaces/IVariableDebtToken.sol';

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/facilitators/flashMinter/GhoFlashMinter.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.10;

import {IACLManager} from '@aave/core-v3/contracts/interfaces/IACLManager.sol';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;

import {IERC3156FlashLender} from '@openzeppelin/contracts/interfaces/IERC3156FlashLender.sol';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;

import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/gho/GhoToken.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0

pragma solidity ^0.8.0;

Expand Down
2 changes: 1 addition & 1 deletion src/contracts/gho/interfaces/IERC20Burnable.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/gho/interfaces/IERC20Mintable.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity >=0.6.0 <0.9.0;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/gho/interfaces/IGhoToken.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: agpl-3.0
// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;

import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';
Expand Down

0 comments on commit 3d5c322

Please sign in to comment.