Skip to content

Commit

Permalink
docs: fix pd commands (#4699)
Browse files Browse the repository at this point in the history
## Describe your changes
Refs #4678.

## Issue ticket number and link

## Checklist before requesting a review

- [x] If this code contains consensus-breaking changes, I have added the
"consensus-breaking" label. Otherwise, I declare my belief that there
are not consensus-breaking changes, for the following reason:

> docs-only

Co-authored-by: Conor Schaefer <[email protected]>
  • Loading branch information
conorsch and conorsch authored Jul 5, 2024
1 parent f343258 commit ceae1e0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/guide/src/dev/devnet-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ and then pass the `--home` flag to any commands you run to point `pcli` at your
cargo run --release --bin pcli -- --home ~/.local/share/pcli-localhost view balance
```

By default, `pd testnet generate` uses the testnet allocations from the `testnets/` directory in the git repo.
By default, `pd network generate` uses the testnet allocations from the `testnets/` directory in the git repo.
If you have an address included in those files, then use `pcli init soft-kms import-phrase`. Otherwise,
edit the `genesis.json` to add your address.

Expand Down
4 changes: 2 additions & 2 deletions docs/guide/src/node/pd/join-network.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Joining a Testnet
# Joining a network

We provide instructions for running both fullnode deployments and validator deployments. A
fullnode will sync with the network but will not have any voting power, and will
Expand All @@ -17,7 +17,7 @@ To join a network as a fullnode, [install the most recent version of `pd`](insta
`cometbft`.

```shell
pd testnet join \
pd network join \
--moniker MY_NODE_NAME \
--external-address IP_ADDRESS:26656 \
NODE_URL
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/src/tutorials/running-frontend.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ pnpm dev

## Frontend embedded in fullnode

If you're already [running a fullnode](../node/pd.md), then you don't need to do anything else:
If you're already [running a fullnode](./running-node.md), then you don't need to do anything else:
a bundled version of the frontend code is available at `https://<YOUR_NODE_URL>/app`. Simply navigate
to that site after installing [Prax], and authorize the web extension to connect to it.

Expand Down
3 changes: 2 additions & 1 deletion docs/guide/src/tutorials/running-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ so that client software can read chain state and submit transactions.
This is true of the [Prax wallet], and of [pcli], as well as any other client.
While users can select a publicly available RPC URL from a party they trust,
this guide demonstrates how a user can self-host an RPC URL for use by themselves and others.
For a more generalized description of running pd, see the [pd overview](../node/pd.md).

## Renting a server

Expand Down Expand Up @@ -73,7 +74,7 @@ We'll use this account to configure the `pd` and `cometbft` data directories.

```
sudo su -l penumbra
pd testnet join \
pd network join \
--moniker <MONIKER> \
--external-address <EXTERNAL_ADDRESS> \
<NODE_URL>
Expand Down

0 comments on commit ceae1e0

Please sign in to comment.