From f5d4c8f2ab0c447022c1b781fd312353a7ca4c33 Mon Sep 17 00:00:00 2001 From: Artem Melnytskyi <112873874+amelnytskyi@users.noreply.github.com> Date: Tue, 28 May 2024 19:19:04 +0300 Subject: [PATCH] fix: updated verify commands (#88) # What :computer: * updated verify commands for npm and pnpm (UUPS) to align with Beacon and Transparent proxy tutorials - current `npm run hardhat verify ` fails # Why :hand: * Reason why first thing was added to PR * Reason why second thing was added to PR * Reason why third thing was added to PR # Evidence :camera: Include screenshots, screen recordings, or `console` output here demonstrating that your changes work as intended image --- .../_upgrading/_uups/_hardhat_uups_contract_upgradability.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/00.build/10.zksync-101/_upgrading/_uups/_hardhat_uups_contract_upgradability.md b/content/00.build/10.zksync-101/_upgrading/_uups/_hardhat_uups_contract_upgradability.md index 63ba5bc2..302d3800 100644 --- a/content/00.build/10.zksync-101/_upgrading/_uups/_hardhat_uups_contract_upgradability.md +++ b/content/00.build/10.zksync-101/_upgrading/_uups/_hardhat_uups_contract_upgradability.md @@ -370,7 +370,7 @@ With that execute the following command: ::code-group ```bash [npm] -npm run hardhat verify +npx hardhat verify ``` ```bash [yarn] @@ -378,7 +378,7 @@ yarn hardhat verify ``` ```bash [pnpm] -pnpm run hardhat verify +pnpx exec hardhat verify ``` ```bash [bun]