Skip to content

Commit 3bf2535

Browse files
authored
fix: update license on .sol files (#647)
1 parent 63caec0 commit 3bf2535

File tree

126 files changed

+387
-169
lines changed

Some content is hidden

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

126 files changed

+387
-169
lines changed

scripts/Script.s.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// SPDX-License-Identifier: MIT
1+
// SPDX-License-Identifier: UNLICENSED
2+
// Copyright (c) 2025 Aave Labs
23
pragma solidity ^0.8.0;
34

45
// import {Script} from 'forge-std/Script.sol';

src/contracts/AaveOracle.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// SPDX-License-Identifier: MIT
1+
// SPDX-License-Identifier: UNLICENSED
2+
// Copyright (c) 2025 Aave Labs
23
pragma solidity ^0.8.0;
34

45
import {AggregatorV3Interface} from 'src/dependencies/chainlink/AggregatorV3Interface.sol';

src/contracts/AssetInterestRateStrategy.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// SPDX-License-Identifier: MIT
1+
// SPDX-License-Identifier: UNLICENSED
2+
// Copyright (c) 2025 Aave Labs
23
pragma solidity ^0.8.10;
34

45
import {WadRayMath} from 'src/libraries/math/WadRayMath.sol';

src/contracts/Hub.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// SPDX-License-Identifier: MIT
1+
// SPDX-License-Identifier: UNLICENSED
2+
// Copyright (c) 2025 Aave Labs
23
pragma solidity ^0.8.0;
34

45
import {EnumerableSet} from 'src/dependencies/openzeppelin/EnumerableSet.sol';

src/contracts/HubConfigurator.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// SPDX-License-Identifier: MIT
1+
// SPDX-License-Identifier: UNLICENSED
2+
// Copyright (c) 2025 Aave Labs
23
pragma solidity ^0.8.10;
34

45
import {IERC20Metadata} from 'src/dependencies/openzeppelin/IERC20Metadata.sol';

src/contracts/Spoke.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// SPDX-License-Identifier: MIT
1+
// SPDX-License-Identifier: UNLICENSED
2+
// Copyright (c) 2025 Aave Labs
23
pragma solidity ^0.8.0;
34

45
import {Multicall} from 'src/misc/Multicall.sol';

src/contracts/SpokeConfigurator.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// SPDX-License-Identifier: MIT
1+
// SPDX-License-Identifier: UNLICENSED
2+
// Copyright (c) 2025 Aave Labs
23
pragma solidity ^0.8.0;
34

45
import {SafeCast} from 'src/dependencies/openzeppelin/SafeCast.sol';

src/contracts/TreasurySpoke.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// SPDX-License-Identifier: MIT
1+
// SPDX-License-Identifier: UNLICENSED
2+
// Copyright (c) 2025 Aave Labs
23
pragma solidity ^0.8.0;
34

45
import {Ownable} from 'src/dependencies/openzeppelin/Ownable.sol';

src/interfaces/IAaveOracle.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// SPDX-License-Identifier: AGPL-3.0
1+
// SPDX-License-Identifier: UNLICENSED
2+
// Copyright (c) 2025 Aave Labs
23
pragma solidity ^0.8.0;
34

45
import {IPriceOracle} from 'src/interfaces/IPriceOracle.sol';

src/interfaces/IAssetInterestRateStrategy.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// SPDX-License-Identifier: BUSL-1.1
1+
// SPDX-License-Identifier: UNLICENSED
2+
// Copyright (c) 2025 Aave Labs
23
pragma solidity ^0.8.10;
34

45
import {IBasicInterestRateStrategy} from './IBasicInterestRateStrategy.sol';

0 commit comments

Comments
 (0)