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

Remove shell lang from some md snippets #6123

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
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/src/content/ignition/docs/advanced/migrating.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ npx hardhat ignition deploy ./ignition/modules/Token.ts

Which, if working correctly, will output the contract’s deployed address:

```sh
```
You are running Hardhat Ignition against an in-process instance of Hardhat Network.
This will execute the deployment, but the results will be lost.
You can use --network <network-name> to deploy to a different network.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/ignition/docs/guides/create2.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ npx hardhat ignition deploy ignition/modules/Apollo.js --network sepolia --strat

The `--strategy create2` flag tells Ignition to deploy the module using `create2`. You should see output similar to the following:

```sh
```
Compiled 1 Solidity file successfully (evm target: paris).
Hardhat Ignition 🚀

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/ignition/docs/guides/ledger.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ npx hardhat ignition deploy ignition/modules/Apollo.ts --network sepolia

This will deploy as usual, however, you will now be prompted on your Ledger device to confirm each transaction before it's sent to the network. You should see a message like the following in your terminal:

```sh
```
Hardhat Ignition 🚀

Deploying [ Apollo ]
Expand Down
14 changes: 7 additions & 7 deletions docs/src/content/ignition/docs/reference/cli-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The Hardhat Ignition CLI provides a set of commands to interact with the deploym

Deploy a module to the specified network

```sh
```
Usage: hardhat [GLOBAL OPTIONS] ignition deploy [--default-sender <STRING>] [--deployment-id <STRING>] [--parameters <STRING>] [--reset] [--strategy <STRING>] [--verify] [--write-localhost-deployment] modulePath

OPTIONS:
Expand All @@ -36,15 +36,15 @@ POSITIONAL ARGUMENTS:

List all deployment IDs

```sh
```
Usage: hardhat [GLOBAL OPTIONS] ignition deployments
```

## `status`

Show the current status of a deployment

```sh
```
Usage: hardhat [GLOBAL OPTIONS] ignition status deploymentId

POSITIONAL ARGUMENTS:
Expand All @@ -56,7 +56,7 @@ POSITIONAL ARGUMENTS:

Show all transactions for a given deployment

```sh
```
Usage: hardhat [GLOBAL OPTIONS] ignition transactions deploymentId

POSITIONAL ARGUMENTS:
Expand All @@ -68,7 +68,7 @@ POSITIONAL ARGUMENTS:

Verify contracts from a deployment against the configured block explorers

```sh
```
Usage: hardhat [GLOBAL OPTIONS] ignition verify [--include-unrelated-contracts] deploymentId

OPTIONS:
Expand All @@ -84,7 +84,7 @@ POSITIONAL ARGUMENTS:

Visualize a module as an HTML report

```sh
```
Usage: hardhat [GLOBAL OPTIONS] ignition visualize [--no-open] modulePath

OPTIONS:
Expand All @@ -100,7 +100,7 @@ POSITIONAL ARGUMENTS:

Reset a deployment's future to allow rerunning

```sh
```
Usage: hardhat [GLOBAL OPTIONS] ignition wipe deploymentId futureId

POSITIONAL ARGUMENTS:
Expand Down
Loading