Skip to content

Commit

Permalink
♻️ (#1350) Reset interfaces on Compound V2
Browse files Browse the repository at this point in the history
  • Loading branch information
MerlinEgalite committed Oct 13, 2022
1 parent 2d4e0d5 commit d90b914
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion contracts/compound/interfaces/IIncentivesVault.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GNU AGPLv3
pragma solidity >=0.8.0;
pragma solidity ^0.8.0;

import "./IOracle.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/compound/interfaces/IInterestRatesManager.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GNU AGPLv3
pragma solidity >=0.8.0;
pragma solidity ^0.8.0;

interface IInterestRatesManager {
function updateP2PIndexes(address _marketAddress) external;
Expand Down
2 changes: 1 addition & 1 deletion contracts/compound/interfaces/ILens.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GNU AGPLv3
pragma solidity >=0.8.0;
pragma solidity ^0.8.0;

import "./compound/ICompound.sol";
import "./IRewardsManager.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/compound/interfaces/IOracle.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GNU AGPLv3
pragma solidity >=0.8.0;
pragma solidity ^0.8.0;

interface IOracle {
function consult(uint256 _amountIn) external returns (uint256);
Expand Down
2 changes: 1 addition & 1 deletion contracts/compound/interfaces/IPositionsManager.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GNU AGPLv3
pragma solidity >=0.8.0;
pragma solidity ^0.8.0;

interface IPositionsManager {
function supplyLogic(
Expand Down
2 changes: 1 addition & 1 deletion contracts/compound/interfaces/IRewardsManager.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GNU AGPLv3
pragma solidity >=0.8.0;
pragma solidity ^0.8.0;

import "./compound/ICompound.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/compound/interfaces/IWETH.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GNU AGPLv3
pragma solidity >=0.8.0;
pragma solidity ^0.8.0;

interface IWETH {
function deposit() external payable;
Expand Down
2 changes: 1 addition & 1 deletion contracts/compound/interfaces/compound/ICompound.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: GNU AGPLv3
pragma solidity >=0.8.0;
pragma solidity ^0.8.0;

interface ICEth {
function accrueInterest() external returns (uint256);
Expand Down

0 comments on commit d90b914

Please sign in to comment.