Skip to content

Commit

Permalink
downgrade to v0.8.17
Browse files Browse the repository at this point in the history
  • Loading branch information
seunlanlege committed Sep 13, 2024
1 parent 27a83cc commit 3297fb1
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion interfaces/IConsensusClient.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;
pragma solidity 0.8.17;

// The state commiment identifies a commiment to some intermediate state in the state machine.
// This contains some metadata about the state machine like it's own timestamp at the time of this commitment.
Expand Down
2 changes: 1 addition & 1 deletion interfaces/IDispatcher.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;
pragma solidity 0.8.17;

import {StateMachineHeight} from "./IConsensusClient.sol";
import {PostRequest} from "./Message.sol";
Expand Down
2 changes: 1 addition & 1 deletion interfaces/IHandler.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;
pragma solidity 0.8.17;

import {IIsmpHost} from "./IIsmpHost.sol";
import {PostRequestMessage, PostResponseMessage, GetResponseMessage, PostRequestTimeoutMessage, PostResponseTimeoutMessage, GetTimeoutMessage} from "./Message.sol";
Expand Down
2 changes: 1 addition & 1 deletion interfaces/IIsmpHost.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;
pragma solidity 0.8.17;

import {StateCommitment, StateMachineHeight} from "./IConsensusClient.sol";
import {IDispatcher} from "./IDispatcher.sol";
Expand Down
2 changes: 1 addition & 1 deletion interfaces/IIsmpModule.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;
pragma solidity 0.8.17;

import {PostRequest, PostResponse, GetResponse, GetRequest} from "./Message.sol";
import {DispatchPost, DispatchPostResponse, DispatchGet} from "./IDispatcher.sol";
Expand Down
2 changes: 1 addition & 1 deletion interfaces/Message.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;
pragma solidity 0.8.17;

import {StateMachineHeight} from "./IConsensusClient.sol";
import {StorageValue} from "@polytope-labs/solidity-merkle-trees/src/Types.sol";
Expand Down
2 changes: 1 addition & 1 deletion interfaces/StateMachine.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;
pragma solidity 0.8.17;

import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polytope-labs/ismp-solidity",
"version": "0.6.4",
"version": "0.6.6",
"description": "Hyperbridge Solidity SDK for the Interoperable state machine protocol",
"author": "Polytope Labs <[email protected]>",
"license": "Apache-2.0",
Expand Down Expand Up @@ -28,7 +28,7 @@
"bridges"
],
"dependencies": {
"@polytope-labs/solidity-merkle-trees": "^0.3.2",
"@polytope-labs/solidity-merkle-trees": "^0.3.3",
"openzeppelin-solidity": "^4.8.1",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.3.1"
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# yarn lockfile v1


"@polytope-labs/solidity-merkle-trees@^0.3.2":
version "0.3.2"
resolved "https://registry.yarnpkg.com/@polytope-labs/solidity-merkle-trees/-/solidity-merkle-trees-0.3.2.tgz#3698e30ebf44fab2e32fbbe31c5dfba8618c7e4c"
integrity sha512-Zrh12nLkDOkydwaZOya7uo4zeX7PUGEKcxd14O0dFeg0TPyNWQaYZy3tw6XEovfyJOaJYu3Asgc971L6FrscLg==
"@polytope-labs/solidity-merkle-trees@^0.3.3":
version "0.3.3"
resolved "https://registry.yarnpkg.com/@polytope-labs/solidity-merkle-trees/-/solidity-merkle-trees-0.3.3.tgz#04c3b107d6bf6ad72c4908f98ea4104edcd406c1"
integrity sha512-WXaX/bKn/lNKFTL2nhZu9m/VMMxHQ+joeMY4IYPLjhgcLLyp009/zCho2du513JADLLp+S9NzaEz4blM4Y6/pw==
dependencies:
openzeppelin-solidity "^4.8.1"

Expand Down

0 comments on commit 3297fb1

Please sign in to comment.