Skip to content

Commit d10251b

Browse files
committed
chore: interfaces pragma set to any 0.8 solc version
1 parent b8628bb commit d10251b

File tree

10 files changed

+11
-10
lines changed

10 files changed

+11
-10
lines changed

contracts/src/arbitration/interfaces/IArbitrableV2.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22

3-
pragma solidity ^0.8.24;
3+
pragma solidity >=0.8.0 <0.9.0;
44

55
import "./IArbitratorV2.sol";
66

contracts/src/arbitration/interfaces/IArbitratorV2.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22

3-
pragma solidity ^0.8.24;
3+
pragma solidity >=0.8.0 <0.9.0;
44

55
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
66
import "./IArbitrableV2.sol";

contracts/src/arbitration/interfaces/IDisputeKit.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22

3-
pragma solidity ^0.8.24;
3+
pragma solidity >=0.8.0 <0.9.0;
44

55
import "./IArbitratorV2.sol";
66

contracts/src/arbitration/interfaces/IDisputeTemplateRegistry.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22

3-
pragma solidity ^0.8.24;
3+
pragma solidity >=0.8.0 <0.9.0;
44

55
/// @title IDisputeTemplate
66
/// @notice Dispute Template interface.

contracts/src/arbitration/interfaces/IEvidence.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22

3-
pragma solidity ^0.8.24;
3+
pragma solidity >=0.8.0 <0.9.0;
44

55
/// @title IEvidence
66
interface IEvidence {

contracts/src/arbitration/interfaces/ISortitionModule.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity ^0.8.24;
2+
3+
pragma solidity >=0.8.0 <0.9.0;
34

45
import "../../libraries/Constants.sol";
56

contracts/src/gateway/interfaces/IForeignGateway.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22

3-
pragma solidity ^0.8.24;
3+
pragma solidity >=0.8.0 <0.9.0;
44

55
import "../../arbitration/interfaces/IArbitratorV2.sol";
66
import "@kleros/vea-contracts/src/interfaces/gateways/IReceiverGateway.sol";

contracts/src/gateway/interfaces/IHomeGateway.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22

3-
pragma solidity ^0.8.24;
3+
pragma solidity >=0.8.0 <0.9.0;
44

55
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
66
import "@kleros/vea-contracts/src/interfaces/gateways/ISenderGateway.sol";

contracts/src/rng/IRandomizer.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22

3-
pragma solidity ^0.8.24;
3+
pragma solidity >=0.8.0 <0.9.0;
44

55
// Randomizer protocol interface
66
interface IRandomizer {

contracts/src/rng/RNG.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: MIT
22

3-
pragma solidity ^0.8.24;
3+
pragma solidity >=0.8.0 <0.9.0;
44

55
interface RNG {
66
/// @dev Request a random number.

0 commit comments

Comments
 (0)