Skip to content

Commit

Permalink
♻️ ok am tired
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
  • Loading branch information
pcaversaccio committed Nov 4, 2023
1 parent 3c825b4 commit 1b913cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions deploy/deploy-zksync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default async function main(hre: HardhatRuntimeEnvironment) {
const artifact = await deployer.loadArtifact("Greeter");
const contract = await deployer.deploy(artifact, ["Hello, Hardhat!"]);

await contract.deployed();
await contract.waitForDeployment();

console.log("Greeter deployed to:", contract.address);
console.log("Greeter deployed to:", await contract.getAddress());
}
2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { HardhatUserConfig, task, vars } from "hardhat/config";
import "@nomicfoundation/hardhat-ethers";
import "@nomicfoundation/hardhat-chai-matchers";
import "@nomicfoundation/hardhat-ethers";
import "@nomicfoundation/hardhat-verify";
import "@nomicfoundation/hardhat-ledger";
import "@typechain/hardhat";

Expand Down

0 comments on commit 1b913cf

Please sign in to comment.