Skip to content

Commit

Permalink
chore: print OwnableIBCHandler and ICS20TransferERC20 addresses (#39)
Browse files Browse the repository at this point in the history
Co-authored-by: liyukun <[email protected]>
  • Loading branch information
ashuralyk and liyukun authored Dec 19, 2023
1 parent 267a055 commit f2bd40f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions migrations/1_deploy_contracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,8 @@ module.exports = async function (deployer, network) {
const ics20Transfer = await ICS20TransferERC20.deployed();
await ibcHandler.bindPort("transfer", ics20Transfer.address);
console.log("Registered ICS20TransferERC20 Module: transfer");

// 6. print OwnableIBCHandler and ICS20TransferERC20 addresses for CI parsing
console.log("Done Deployment OwnableIBCHandler at " + ibcHandler.address);
console.log("Done Deployment ICS20TransferERC20 at " + ics20Transfer.address);
};

0 comments on commit f2bd40f

Please sign in to comment.