Skip to content

Commit

Permalink
Revert "feat: update deployProxy script"
Browse files Browse the repository at this point in the history
This reverts commit fe64ed2.
  • Loading branch information
igorsenych-cw committed Nov 18, 2024
1 parent fe64ed2 commit ef85040
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/deployProxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ async function main() {
const factory = await ethers.getContractFactory(CONTRACT_NAME);
const proxy = await upgrades.deployProxy(factory);

await proxy.waitForDeployment();
await proxy.deployed();

console.log("Proxy deployed:", await proxy.getAddress());
console.log("Proxy deployed:", proxy.address);
}

main().then().catch(err => {
Expand Down

0 comments on commit ef85040

Please sign in to comment.