Skip to content

Commit

Permalink
Merge pull request #5 from datachainlab/bump-yui-relayer
Browse files Browse the repository at this point in the history
Upgrade yui-relayer v0.5 and chain module version

Signed-off-by: Jun Kimura <jun.kimura@datachain.jp>
  • Loading branch information
bluele committed May 13, 2024
2 parents 117a591 + c60439f commit 65d4d93
Show file tree
Hide file tree
Showing 22 changed files with 997 additions and 1,171 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
protoVer=0.13.1
protoVer=0.14.0
protoImageName=ghcr.io/cosmos/proto-builder:$(protoVer)
protoImage=docker run --user 0 --rm -v $(CURDIR):/workspace --workdir /workspace $(protoImageName)

Expand Down
1 change: 1 addition & 0 deletions e2e/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
*.env.sh
/abis

artifacts/
cache/
Expand Down
1 change: 1 addition & 0 deletions e2e/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ network-down:

.PHONY: init
init:
./relayer/scripts/extract-abi.sh
RLY_BIN=$(RLY_BIN) ./relayer/scripts/init-rly

.PHONY: handshake
Expand Down
2 changes: 1 addition & 1 deletion e2e/chains/chain0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hyperledger/besu:23.7.2
FROM hyperledger/besu:24.3

USER root

Expand Down
2 changes: 1 addition & 1 deletion e2e/chains/chain1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM hyperledger/besu:23.7.2
FROM hyperledger/besu:24.3

USER root

Expand Down
4 changes: 4 additions & 0 deletions e2e/contracts/Dependencies.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ import {IBCChannelPacketSendRecv} from
"@hyperledger-labs/yui-ibc-solidity/contracts/core/04-channel/IBCChannelPacketSendRecv.sol";
import {IBCChannelPacketTimeout} from
"@hyperledger-labs/yui-ibc-solidity/contracts/core/04-channel/IBCChannelPacketTimeout.sol";
import {
IBCChannelUpgradeInitTryAck,
IBCChannelUpgradeConfirmTimeoutCancel
} from "@hyperledger-labs/yui-ibc-solidity/contracts/core/04-channel/IBCChannelUpgrade.sol";
import {IIBCHandler} from "@hyperledger-labs/yui-ibc-solidity/contracts/core/25-handler/IIBCHandler.sol";
import {OwnableIBCHandler} from "@hyperledger-labs/yui-ibc-solidity/contracts/core/25-handler/OwnableIBCHandler.sol";
import {IBFT2Client} from "@hyperledger-labs/yui-ibc-solidity/contracts/clients/IBFT2Client.sol";
Expand Down

0 comments on commit 65d4d93

Please sign in to comment.