From 5c3399ddd0f50400cec1ee01b7877656dc300559 Mon Sep 17 00:00:00 2001 From: Artem Melnytskyi <112873874+amelnytskyi@users.noreply.github.com> Date: Wed, 14 Feb 2024 12:43:02 +0200 Subject: [PATCH] fix: update beacon proxy file (#913) --- docs/build/tooling/hardhat/hardhat-zksync-upgradable.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/tooling/hardhat/hardhat-zksync-upgradable.md b/docs/build/tooling/hardhat/hardhat-zksync-upgradable.md index d14527965f..ccb8241fbe 100644 --- a/docs/build/tooling/hardhat/hardhat-zksync-upgradable.md +++ b/docs/build/tooling/hardhat/hardhat-zksync-upgradable.md @@ -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(boxV2Implementation.abi, boxV2Implementation.bytecode, deployer.zkWallet, deployer.deploymentType); const upgradedBox = attachTo.attach(await boxBeaconProxy.getAddress());