Skip to content

Commit

Permalink
Merge branch 'feat/v3' into fix-add-to-whitelist-task
Browse files Browse the repository at this point in the history
  • Loading branch information
iulianpascalau authored Sep 13, 2024
2 parents 97c9af8 + e651958 commit 02aa5f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/deploy/test-tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ task("deploy-test-tokens", "Deploys ERC20 contracts to use to test the bridge")
const safeAddress = config["erc20Safe"];
const safeContractFactory = await hre.ethers.getContractFactory("ERC20Safe");
const safe = safeContractFactory.attach(safeAddress);
console.log("Safe at: ", safe.address);
console.log("Safe at: ", safe.target);
//deploy contracts
const genericERC20Factory = await hre.ethers.getContractFactory("GenericERC20");

Expand All @@ -21,5 +21,5 @@ task("deploy-test-tokens", "Deploys ERC20 contracts to use to test the bridge")
const decimals = taskArgs.decimals;

const usdcContract = await genericERC20Factory.deploy(tokenName, tokenSymbol, decimals);
console.log("Token deployed to:", usdcContract.getAddress());
console.log("Token deployed to:", usdcContract.target);
});

0 comments on commit 02aa5f4

Please sign in to comment.