Skip to content

Commit

Permalink
Lukas/downgrade interface pragmas (#234) (#235)
Browse files Browse the repository at this point in the history
* downgrade interface pragmas

* change IDAIPermit and IERC1271 to be consistent

---------

Co-authored-by: Lukas Rosario <[email protected]>
  • Loading branch information
snreynolds and lukasrosario committed Sep 8, 2023
1 parent 576f549 commit 79658f6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/interfaces/IAllowanceTransfer.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
pragma solidity ^0.8.0;

import {IEIP712} from "./IEIP712.sol";

Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/IDAIPermit.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
pragma solidity ^0.8.0;

interface IDAIPermit {
/// @param holder The address of the token owner.
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/IEIP712.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
pragma solidity ^0.8.0;

interface IEIP712 {
function DOMAIN_SEPARATOR() external view returns (bytes32);
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/IERC1271.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
pragma solidity ^0.8.0;

interface IERC1271 {
/// @dev Should return whether the signature provided is valid for the provided data
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/ISignatureTransfer.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
pragma solidity ^0.8.0;

import {IEIP712} from "./IEIP712.sol";

Expand Down

0 comments on commit 79658f6

Please sign in to comment.