Skip to content

Commit

Permalink
Remove shell lang from some md snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
fvictorio committed Jan 8, 2025
1 parent db09e41 commit fbed13b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
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

0 comments on commit fbed13b

Please sign in to comment.