diff --git a/docs/toolkit/getting-started.md b/docs/toolkit/getting-started.md index a9fb77ecb..12ed82deb 100644 --- a/docs/toolkit/getting-started.md +++ b/docs/toolkit/getting-started.md @@ -29,6 +29,7 @@ To get started, install The Solana Toolkit: ```shell npx -y mucho@latest install +mucho --version ``` This will install the latest versions of the following: @@ -49,6 +50,12 @@ This will install the latest versions of the following: - [Code Coverage Tool](https://github.com/LimeChain/zest?tab=readme-ov-file): A code coverage CLI tool for Solana programs. +After installation, all `mucho` commands can be run as follows: + +```shell +mucho --help +``` + ## Generate a keypair For a fresh installation of the [Solana CLI](https://docs.anza.xyz/cli/), you're diff --git a/docs/toolkit/index.md b/docs/toolkit/index.md index 8c085631a..a88fc57e3 100644 --- a/docs/toolkit/index.md +++ b/docs/toolkit/index.md @@ -35,10 +35,18 @@ one cli_. ## Install +Install the Solana Toolkit and `mucho` CLI with the following command: + ```shell npx -y mucho@latest install ``` +Verify mucho was installed via: + +```shell +mucho --version +``` + For more information, go to [Getting Started](/docs/toolkit/getting-started.md). ## Create a Project diff --git a/docs/toolkit/test-suite/basics.md b/docs/toolkit/test-suite/basics.md index 45bcb515e..899690bce 100644 --- a/docs/toolkit/test-suite/basics.md +++ b/docs/toolkit/test-suite/basics.md @@ -17,7 +17,7 @@ keywords: ## Installation -Install the Solana Toolkit by running the following command: +Install the Solana Toolkit and mucho CLI by running the following command: ```shell npx -y mucho@latest install