Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Update hardhat-zksync-upgradable.md #959

Merged
merged 2 commits into from
Mar 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/build/tooling/hardhat/hardhat-zksync-upgradable.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ async function main() {

const box = await hre.zkUpgrades.deployBeaconProxy(deployer.zkWallet, await beacon.getAddress(), boxContract, [42]);
await box.waitForDeployment();
console.log(contractName + " beacon proxy deployed to: ", await beacon.getAddress());
console.log(contractName + " beacon proxy deployed to: ", await box.getAddress());

box.connect(zkWallet);
const value = await box.retrieve();
Expand Down