diff --git a/packages/docs/pages/ledger/customize.mdx b/packages/docs/pages/experimental/customize.mdx similarity index 100% rename from packages/docs/pages/ledger/customize.mdx rename to packages/docs/pages/experimental/customize.mdx diff --git a/packages/docs/pages/introduction/testnets/genesis-validator-apply.mdx b/packages/docs/pages/introduction/testnets/genesis-validator-apply.mdx index ea2d53f2..12f14c6d 100644 --- a/packages/docs/pages/introduction/testnets/genesis-validator-apply.mdx +++ b/packages/docs/pages/introduction/testnets/genesis-validator-apply.mdx @@ -2,7 +2,7 @@ Before a testnet launches, you can apply to be a genesis validator. -## 1) Set up +### Set up Follow [this guide](../../validators/genesis-validator-setup.md#pre-genesis) on how to generate your "pre-genesis" validator files. @@ -23,10 +23,9 @@ cometbft_node_key = "00e1a8fe1abceb700063ab4558baec680b64247e2fd9891962af552b9e4 This file contains only public information and is safe to share publicly. -## 2.1) Submitting the config +### Submitting the config If you want to be a genesis validator for the testnet, please make a pull request to https://github.com/anoma/namada-testnets adding your validator.toml file to the relevant directory (e.g. `namada-public-testnet-2` for the second public testnet), renaming it to `$alias.toml`. +E.g. if you chose your alias to be "bertha", submit the file with the name `bertha.toml`. You can see what an example PR looks like [here](https://github.com/anoma/namada-testnets/pull/29). -e.g. if you chose your alias to be "bertha", submit the file with the name `bertha.toml`. You can see what an example PR looks like [here](https://github.com/anoma/namada-testnets/pull/29). - -## 2.2) Wait for the CHAIN_ID -Wait until corresponding `CHAIN_ID` has been distributed. \ No newline at end of file +### Wait for the `CHAIN_ID` +Wait until the corresponding `CHAIN_ID` has been distributed. \ No newline at end of file diff --git a/packages/docs/pages/public-goods-stewards.mdx b/packages/docs/pages/public-goods-stewards.mdx index 14ccc8d0..3c07777b 100644 --- a/packages/docs/pages/public-goods-stewards.mdx +++ b/packages/docs/pages/public-goods-stewards.mdx @@ -10,4 +10,4 @@ This documentation will cover: 1. [How to become a public goods steward](./public-goods-stewards/electing.md). 2. [How to submit a public goods funding proposal](./public-goods-stewards/proposing.md) -3. [How to vote on steward elections](./public-goods-stewards/voting.md#voting-for-stewards) as well as [public goods funding proposal](./public-goods-stewards/voting.md#voting-for-pgf-proposals). \ No newline at end of file +3. [How to vote on steward elections](./public-goods-stewards/voting.md#voting-for-stewards) as well as [public goods funding proposals](./public-goods-stewards/voting.md#voting-for-pgf-proposals). \ No newline at end of file diff --git a/packages/docs/pages/running-a-full-node.mdx b/packages/docs/pages/running-a-full-node.mdx index 6882efca..03d15d19 100644 --- a/packages/docs/pages/running-a-full-node.mdx +++ b/packages/docs/pages/running-a-full-node.mdx @@ -1,12 +1,14 @@ # Full Node Setup Before starting a full node, the unique identifier of the `chain-id` wll be needed, which will be released as soon as the genesis file is ready. +### Join the network Once the `chain-id` has been distributed, it is possible to join the network with the `CHAIN_ID`: ```bash copy export CHAIN_ID="namada-mainnet" ## (replace with the actual chain-id) namada client utils join-network --chain-id $CHAIN_ID ``` -3. Start your node and sync + +### Start your node and sync ```bash copy TM_LOG_LEVEL=p2p:none,pex:error namada node ledger run ```