Skip to content

Commit

Permalink
update yui-ibc-solidity version from v0.3.26 to v0.3.27
Browse files Browse the repository at this point in the history
Signed-off-by: Masanori Yoshida <[email protected]>
  • Loading branch information
siburu committed May 2, 2024
1 parent 968d607 commit 572fb4c
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion tests/cases/eth2eth/configs/chains/ibc-0.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"mnemonic": "math razor capable expose worth grape metal sunset metal sudden usage scheme",
"path": "m/44'/60'/0'/0/0"
},
"ibc_address": "0x727A5648832D2b317925CE043eA9b7fE04B4CD55",
"ibc_address": "0xaa43d337145E8930d01cb4E60Abf6595C692921E",
"initial_send_checkpoint": 1,
"initial_recv_checkpoint": 1,
"enable_debug_trace": true,
Expand Down
2 changes: 1 addition & 1 deletion tests/cases/eth2eth/configs/chains/ibc-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"mnemonic": "math razor capable expose worth grape metal sunset metal sudden usage scheme",
"path": "m/44'/60'/0'/0/0"
},
"ibc_address": "0x727A5648832D2b317925CE043eA9b7fE04B4CD55",
"ibc_address": "0xaa43d337145E8930d01cb4E60Abf6595C692921E",
"initial_send_checkpoint": 1,
"initial_recv_checkpoint": 1,
"enable_debug_trace": true,
Expand Down
2 changes: 1 addition & 1 deletion tests/cases/tm2eth/configs/demo/ibc-1.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"mnemonic": "math razor capable expose worth grape metal sunset metal sudden usage scheme",
"path": "m/44'/60'/0'/0/0"
},
"ibc_address": "0x727A5648832D2b317925CE043eA9b7fE04B4CD55",
"ibc_address": "0xaa43d337145E8930d01cb4E60Abf6595C692921E",
"initial_send_checkpoint": 1,
"initial_recv_checkpoint": 1,
"enable_debug_trace": true,
Expand Down
5 changes: 5 additions & 0 deletions tests/chains/ethereum/contracts/contracts/Dependencies.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ 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 {MockClient} from "@hyperledger-labs/yui-ibc-solidity/contracts/clients/MockClient.sol";
Expand Down
6 changes: 3 additions & 3 deletions tests/chains/ethereum/contracts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/chains/ethereum/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "",
"license": "Apache-2.0",
"devDependencies": {
"@hyperledger-labs/yui-ibc-solidity": "git+https://github.com/hyperledger-labs/yui-ibc-solidity.git#v0.3.26",
"@hyperledger-labs/yui-ibc-solidity": "git+https://github.com/hyperledger-labs/yui-ibc-solidity.git#v0.3.27",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"hardhat": "^2.19.1"
}
Expand Down
4 changes: 3 additions & 1 deletion tests/chains/ethereum/contracts/scripts/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ async function deployIBC(deployer) {
"IBCConnectionSelfStateNoValidation",
"IBCChannelHandshake",
"IBCChannelPacketSendRecv",
"IBCChannelPacketTimeout"
"IBCChannelPacketTimeout",
"IBCChannelUpgradeInitTryAck",
"IBCChannelUpgradeConfirmTimeoutCancel"
];
const logics = [];
for (const name of logicNames) {
Expand Down

0 comments on commit 572fb4c

Please sign in to comment.