Skip to content

Commit e2bfd1e

Browse files
committed
v0.1.21
1 parent 942f5ed commit e2bfd1e

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.20;
2+
pragma solidity >=0.7.6 <0.9;
33

44
import "./IJsonApi.sol";
55

66
interface IJsonApiVerification {
7-
function verifyJsonApi(IJsonApi.Proof calldata _proof) external view returns (bool _proved);
7+
function verifyJsonApi(
8+
IJsonApi.Proof calldata _proof
9+
) external view returns (bool _proved);
810
}
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
// SPDX-License-Identifier: MIT
2-
pragma solidity 0.8.20;
2+
pragma solidity >=0.7.6 <0.9;
33

44
import "./IJsonApi.sol";
55

66
interface IJsonApiVerification {
7-
function verifyJsonApi(IJsonApi.Proof calldata _proof) external view returns (bool _proved);
7+
function verifyJsonApi(
8+
IJsonApi.Proof calldata _proof
9+
) external view returns (bool _proved);
810
}

0 commit comments

Comments
 (0)