Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
GalaxySciTech committed Nov 8, 2024
1 parent 65e562b commit 6cf91cb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ async function main() {

await parentnetTreasury.deployed();

console.log(
"parentnetTreasury use " + deploy.parentnetendpoint + " as endpoint"
);

console.log("parentnetTreasury deploy to ", parentnetTreasury.address);
}

Expand Down
2 changes: 2 additions & 0 deletions applications/subswap/contract/scripts/subnettreasurydeploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ const deploy = require("../deploy.config.json");
async function main() {
const factory = await hre.ethers.getContractFactory("SubnetTreasury");

console.log("subnetTreasury use " + deploy.subnetendpoint + " as endpoint");

const subnetTreasury = await factory.deploy(deploy.subnetendpoint);

await subnetTreasury.deployed();
Expand Down

0 comments on commit 6cf91cb

Please sign in to comment.