General Settings

The provided details outline key node configuration settings located in the ~/.rapidd/config/ directory. It's advisable to personalize these settings with your own information.

~/.rapidd/config
│-- app.toml                            # client configuration file
│-- client.toml                         # configurations for the cli wallet
│-- config.toml                         # Tendermint configuration file
│-- genesis.json                        # gensesis file
│-- node_key.json                       # the private key is utilized for node authentication within the P2P protocol
└-- priv_validator_key.json             # the key employed by the validator on the node for block signing.

Genesis File

You can find the official Github for the Genesis file.

Initialize Moniker

A Moniker serves as a personalized username for your node, designed to be easily understood. This name is established during the node setup process and offers a way to assign nodes more user-friendly and descriptive labels, contrasting with the utilization of IP addresses or public key hashes, which might be challenging to remember or identify.

  • Set Moniker

export MONIKER="YOUR_MONIKER"
  • Initialize the node

rapidd init $MONIKER --chain-id <Network> -o

Different types of peers in ~/.rapidd/config/config.toml

Set up external-address in config.toml

Last updated