Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update cmd #77

Merged
merged 1 commit into from
May 20, 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
Original file line number Diff line number Diff line change
Expand Up @@ -175,9 +175,9 @@ deploys to the configured network in your Hardhat setup. For local deployment, a
::code-group

```bash [npm]
npx run hardhat deploy-zksync --script deployUUPS.ts
npx hardhat deploy-zksync --script deployUUPS.ts
# To deploy the contract on local in-memory node:
# npx run hardhat deploy-zksync --script deployUUPS.ts --network inMemoryNode
# npx hardhat deploy-zksync --script deployUUPS.ts --network inMemoryNode
```

```bash [yarn]
Expand All @@ -187,9 +187,9 @@ yarn hardhat deploy-zksync --script deployUUPS.ts
```

```bash [pnpm]
pnpx run hardhat deploy-zksync --script deployUUPS.ts
pnpx exec hardhat deploy-zksync --script deployUUPS.ts
# To deploy the contract on local in-memory node:
# pnpx run hardhat deploy-zksync --script deployUUPS.ts --network inMemoryNode
# pnpx exec hardhat deploy-zksync --script deployUUPS.ts --network inMemoryNode
```

```bash [bun]
Expand Down Expand Up @@ -334,15 +334,15 @@ Execute the test command corresponding to your package manager:
::code-group

```bash [npm]
npx run hardhat deploy-zksync --script upgrade-scripts/upgradeUUPSCrowdfundingCampaign.ts
npx hardhat deploy-zksync --script upgrade-scripts/upgradeUUPSCrowdfundingCampaign.ts
```

```bash [yarn]
yarn hardhat deploy-zksync --script upgrade-scripts/upgradeUUPSCrowdfundingCampaign.ts
```

```bash [pnpm]
pnpx run hardhat deploy-zksync --script upgrade-scripts/upgradeUUPSCrowdfundingCampaign.ts
pnpx exec hardhat deploy-zksync --script upgrade-scripts/upgradeUUPSCrowdfundingCampaign.ts
```

```bash [bun]
Expand Down
Loading