Skip to content

Commit

Permalink
docs: edits
Browse files Browse the repository at this point in the history
  • Loading branch information
jcstein committed Oct 24, 2024
1 parent 17987bf commit 3bee328
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions how-to-guides/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Run the following command to start your light node:
celestia light start --p2p.network mocha --core.ip rpc-mocha.pops.one
```

The `core.ip` flag is used to specify the consensus RPC endpoint's you want to connect to. We'll use `rpc-mocha.pops.one` from the [P-OPS team](https://pops.one) for Mocha testnet.
The `core.ip` flag is used to specify the consensus RPC endpoints you want to connect to. We'll use `rpc-mocha.pops.one` from the [P-OPS team](https://pops.one) for Mocha testnet.

Once you see this in the logs, you're ready to start posting data!

Expand Down Expand Up @@ -121,7 +121,7 @@ celestia blob submit [namespace] [blobData]

The `[namespace]` is a permissionless way to categorize your data on Celestia. In other words, it's a channel for you to post your data. For example, this could be the name of your project or a category for the type of blob. In this example, we'll use `0x48656C6C6F` as the namespace, which is the hex encoding of "quotes".

> [Learn more about namespaces in celestia-app documentation](https://celestiaorg.github.io/celestia-app/namespace.html).
> Learn more about namespaces in [the celestia-app documentation](https://celestiaorg.github.io/celestia-app/namespace.html).
The `[blobData]` is the blob data you want to post to the network. In this example, we'll use a quote from Leonardo da Vinci:

Expand Down Expand Up @@ -224,7 +224,7 @@ If you're interested in writing a Golang program to interact with your Celestia

As described in the [initialize the light node section](#initialize-the-light-node) above, the node store is created in the `~/.celestia-<node-type>-<network>` directory.

In this guide, the node store for `~/.celestia-light-{{ constants.mochaChainId }}` contains the following directories:
In this guide, the node store for `~/.celestia-light-{{ constants.mochaChainId }}` contains the following directories and file types:

- `config.toml`: Node configuration settings
- `data/`: Contains database files
Expand All @@ -233,7 +233,7 @@ In this guide, the node store for `~/.celestia-light-{{ constants.mochaChainId }
- System files: `DISCARD`, `KEYREGISTRY`, and `MANIFEST` for database management
- `keys/`: Stores node identity and account keys
- Contains encoded node identifiers
- `keyring-test/`: Test keyring directory storing
- `keyring-test/`: Test keyring directory
- `.address` files: Account addresses
- `.info` files: Key metadata and information

Expand Down
2 changes: 1 addition & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ features:
icon: 🏗️
- title: How-to guides
details: Explore step-by-step guides for running a node, posting data blobs, building applications and sovereign rollups on Celestia.
link: /how-to-guides/nodes-overview
link: /how-to-guides/quick-start
icon: 📈
- title: Tutorials
details: Access tutorials for interacting with Celestia, starting with celestia-node through the node API.
Expand Down

0 comments on commit 3bee328

Please sign in to comment.