Skip to content

Commit

Permalink
refresh package-lock.json
Browse files Browse the repository at this point in the history
Signed-off-by: yoshidan <[email protected]>
  • Loading branch information
yoshidan committed Jan 3, 2024
1 parent ec37536 commit 8166c16
Show file tree
Hide file tree
Showing 2 changed files with 307 additions and 525 deletions.
10 changes: 6 additions & 4 deletions tests/chains/ethereum/contract/migrations/1_deploy_contracts.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
const MockClient = artifacts.require("MockClient");
const IBCClient = artifacts.require("IBCClient");
const IBCConnection = artifacts.require("IBCConnection");
const IBCConnection = artifacts.require("IBCConnectionSelfStateNoValidation");
const IBCChannelHandshake = artifacts.require("IBCChannelHandshake");
const IBCPacket = artifacts.require("IBCPacket");
const IBCChannelPacketSendRecv = artifacts.require("IBCChannelPacketSendRecv");
const IBCChannelPacketTimeout = artifacts.require("IBCChannelPacketTimeout");
const IBCHandler = artifacts.require("OwnableIBCHandler");
const ERC20Token = artifacts.require("ERC20Token");
const ICS20TransferBank = artifacts.require("ICS20TransferBank");
Expand All @@ -12,8 +13,9 @@ const deployCore = async (deployer) => {
await deployer.deploy(IBCClient);
await deployer.deploy(IBCConnection);
await deployer.deploy(IBCChannelHandshake);
await deployer.deploy(IBCPacket);
await deployer.deploy(IBCHandler, IBCClient.address, IBCConnection.address, IBCChannelHandshake.address, IBCPacket.address);
await deployer.deploy(IBCChannelPacketSendRecv);
await deployer.deploy(IBCChannelPacketTimeout);
await deployer.deploy(IBCHandler, IBCClient.address, IBCConnection.address, IBCChannelHandshake.address, IBCChannelPacketSendRecv.address, IBCChannelPacketTimeout.address);
await deployer.deploy(MockClient, IBCHandler.address);
};

Expand Down
Loading

0 comments on commit 8166c16

Please sign in to comment.