1
- # mucho
1
+ # Solana Node CLI
2
2
3
- This is the ` mucho ` , a command-line tool designed to simplify the development
3
+ This is the ` solana ` , a command-line tool designed to simplify the development
4
4
and testing of Solana blockchain programs. The tool provides an array of
5
5
commands to manage Solana Toolkit installations, clone and manage blockchain
6
6
fixtures (accounts, programs, etc), and simplifying the experience of running a
@@ -14,7 +14,7 @@ experience.
14
14
** Usage:**
15
15
16
16
``` shell
17
- npx mucho --help
17
+ npx solana --help
18
18
```
19
19
20
20
This tool is not recommended to be installed as a global npm package on your
@@ -39,7 +39,7 @@ Install the Solana Toolkit local development tooling on your system.
39
39
** Usage:**
40
40
41
41
``` shell
42
- npx mucho install --help
42
+ npx solana install --help
43
43
```
44
44
45
45
The Solana Toolkit includes the following tools:
69
69
** Usage:**
70
70
71
71
``` shell
72
- npx mucho clone --help
72
+ npx solana clone --help
73
73
```
74
74
75
75
The default behavior for fixture cloning is as follows:
@@ -108,7 +108,7 @@ Build all or a single Solana program in your workspace.
108
108
** Usage:**
109
109
110
110
``` shell
111
- npx mucho build --help
111
+ npx solana build --help
112
112
```
113
113
114
114
### deploy
@@ -118,7 +118,7 @@ Deploy a Solana program in your workspace.
118
118
** Usage:**
119
119
120
120
``` shell
121
- npx mucho deploy --help
121
+ npx solana deploy --help
122
122
```
123
123
124
124
The default behavior for deploying is as follows:
@@ -134,14 +134,14 @@ cloned fixtures for your repo.
134
134
** Usage:**
135
135
136
136
``` shell
137
- npx mucho test-validator --help
137
+ npx solana test-validator --help
138
138
```
139
139
140
140
> Under the hood, the ` test-validator ` commands wraps the Agave tool suite's
141
141
> ` solana-test-validator ` command but also helps provide additional quality of
142
142
> life improvements for Solana developers. To view the generated
143
143
> ` solana-test-validator ` wrapper command, run
144
- > ` npx mucho test-validator --output-only ` .
144
+ > ` npx solana test-validator --output-only ` .
145
145
146
146
The default behavior for running the ` test-validator ` is as follows:
147
147
@@ -161,15 +161,15 @@ Run code coverage tests on a Solana program, powered by the
161
161
** Usage:**
162
162
163
163
``` shell
164
- npx mucho coverage --help
164
+ npx solana coverage --help
165
165
```
166
166
167
167
To pass additional arguments to the Zest CLI, append them at the end of this
168
168
tool's command starting with ` -- ` . For example, to run the Zest CLI's help
169
169
command:
170
170
171
171
``` shell
172
- npx mucho coverage -- --help
172
+ npx solana coverage -- --help
173
173
```
174
174
175
175
## Solana.toml
0 commit comments