Skip to content

Commit 44298a8

Browse files
last chunk
1 parent a76cee7 commit 44298a8

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

docs/tools/dApp-development/launchpad/common-pitfalls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Every time the dev environment starts, a new local test chain is started. Metamask maintains a cache of "latest block number" and "account transaction nonce". Since every run of `dev` creates a new chain, it never matches with this cache.
44

5-
To know how to clear the cache, [read this](https://support.metamask.io/hc/en-us/articles/360015488891-How-to-clear-your-account-activity-reset-account).
5+
To clear the cache, follow the [MetaMask documentation](https://support.metamask.io/hc/en-us/articles/360015488891-How-to-clear-your-account-activity-reset-account).
66

77
## MetaMask transactions fail with a nonce error when using the **reset on change** option in dev environment
88

docs/tools/dApp-development/launchpad/smart-contracts.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ For all available options run:
2020
dapp-launchpad dev -h
2121
```
2222

23-
Internally, the `dev` command runs the `scripts/deploy_localhost` script that deploys all contracts in the correct sequence.
23+
Internally, the [`dev`](commands.md#dev) command runs the `scripts/deploy_localhost` script that deploys all contracts in the correct sequence.
2424

2525
!!! warning
2626
When working on your own smart contracts, make sure to update this script.
@@ -29,19 +29,17 @@ Internally, the `dev` command runs the `scripts/deploy_localhost` script that de
2929

3030
Optionally, you can enable a local blockchain explorer, which auto-indexes all transactions, and provides a feature-loaded dashboard with an overview of the chain.
3131

32-
To use it, run the `[dev]()` command with `-e`.
32+
To use it, run the [`dev`](commands.md#dev) command with `-e`.
3333

3434
!!! info "Setting up an explorer"
3535
- Sign up on [Ethernal](https://app.tryethernal.com/), and create a workspace.
3636
- Then, add your login email, password, and workspace details in the `.env` file in the `smart-contracts` directly.
3737

38-
The above config can also be mentioned with [`dev`]() command params `--ethernal-login-email`, `--ethernal-login-password` and `--ethernal-workspace`, which override the preset environment variables.
39-
40-
Once started, you can access the chain explorer at the same URL as mentioned before.
38+
The above config can also be mentioned with [`dev`](commands.md#dev) command params `--ethernal-login-email`, `--ethernal-login-password` and `--ethernal-workspace`, which override the preset environment variables.
4139

4240
## Deploying to production
4341

44-
The [`deploy`]() command automates deploying to any EVM compatible chain. It runs the provided `scripts/deploy_prod` script to deploy all contracts in the correct sequence. When working on your own smart contracts, make sure to update this script.
42+
The [`deploy`](commands.md#deploy) command automates deploying to any EVM compatible chain. It runs the provided `scripts/deploy_prod` script to deploy all contracts in the correct sequence. When working on your own smart contracts, make sure to update this script.
4543

4644
For all available options run:
4745

0 commit comments

Comments
 (0)