Skip to content

Commit

Permalink
fix: omnichain deploy contract name in quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed Jul 20, 2023
1 parent 59aaef9 commit a92bdae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/omnichain/tasks/deploy.ts.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const main = async (args: any, hre: HardhatRuntimeEnvironment) => {

const systemContract = getAddress("systemContract", "zeta_testnet");

const factory = await hre.ethers.getContractFactory({{contractName}});
const factory = await hre.ethers.getContractFactory("{{contractName}}");
const contract = await factory.deploy(systemContract);
await contract.deployed();

Expand Down

0 comments on commit a92bdae

Please sign in to comment.