Skip to content

Commit

Permalink
clean up command examples
Browse files Browse the repository at this point in the history
  • Loading branch information
brentstone committed May 30, 2024
1 parent 0b61668 commit 8143203
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/docs/pages/introduction/installing-cometbft.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ You can download the precompiled CometBFT binaries from their [official GitHub r
If you have `go` installed and downloaded, you may want to add the CometBFT binary to your `$GOPATH/bin` directory. This can be done by running the following command in the root directory of the repository

```bash copy
cp <path-to-cometbft-binary> $GOPATH/bin/
cp /path/to/cometbft/binary $GOPATH/bin/
```

Otherwise, we recommend you simply copy it to your `/usr/local/bin` which may require `sudo` permissions.

`sudo cp <path-to-cometbft-binary> /usr/local/bin/`
`sudo cp /path/to/cometbft/binary /usr/local/bin/`

In order to check that the installation was successful, you can run the following command

Expand All @@ -30,4 +30,4 @@ Which should output something like:

```bash copy
0.37.2
```
```
2 changes: 1 addition & 1 deletion packages/docs/pages/introduction/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ This can take several hours depending on the chain height and your system specs.
Create a new [implicit](../users/transparent-accounts.mdx) account in order to receive tokens:

```shell copy
namadaw gen --alias <your-go-to-alias>
namadaw gen --alias $YOUR_ALIAS
```
This will generate a new account and store it in the default keychain. You can view the account address with:

Expand Down

0 comments on commit 8143203

Please sign in to comment.