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

Commit

Permalink
fix: update beacon proxy file (#913)
Browse files Browse the repository at this point in the history
  • Loading branch information
amelnytskyi authored Feb 14, 2024
1 parent 0dcc352 commit 5c3399d
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -612,7 +612,7 @@ async function main() {
// upgrade beacon
const boxV2Implementation = await deployer.loadArtifact("BoxV2");
await hre.zkUpgrades.upgradeBeacon(deployer.zkWallet, beaconAddress, boxV2Implementation);
console.info(chalk.green("Successfully upgraded beacon Box to BoxV2 on address: ", beaconAddress));
console.info("Successfully upgraded beacon Box to BoxV2 on address: ", beaconAddress);

const attachTo = new zk.ContractFactory<any[], Contract>(boxV2Implementation.abi, boxV2Implementation.bytecode, deployer.zkWallet, deployer.deploymentType);
const upgradedBox = attachTo.attach(await boxBeaconProxy.getAddress());
Expand Down

0 comments on commit 5c3399d

Please sign in to comment.