markdown structure formatting, rendered pages unchanged

This commit is contained in:
Erin Rivas
2023-08-11 09:44:59 -05:00
parent 5ef50c6768
commit b103539ad4
61 changed files with 583 additions and 322 deletions
+13 -4
View File
@@ -1,8 +1,8 @@
---
sidebar_position: 1
---
# Creating Validator
# Creating Validator
:::tip
@@ -38,11 +38,14 @@ It is the only way to recover your account if you ever forget your password.
some words forming mnemonic seed will be placed here you have to write them down and keep them safe
```
Besure to back up the seed phrase of your validator wallet. It's also recommened to keep an offline copy along with your key files. Remember, your key files cannot be restored and ***must*** be backed up. See the installation page for instructions.
Besure to back up the seed phrase of your validator wallet. It's also recommened to keep an offline copy along with your
key files. Remember, your key files cannot be restored and ***must*** be backed up. See the installation page for
instructions.
You should also backup your keyring files.
Change `WALLET_NAME` to the name of your wallet.
```sh
mkdir ~/keyring_backup
cp ~/.canine/WALLET_NAME.info ~/keyring_backup
@@ -54,6 +57,7 @@ cp ~/.canine/keyhash ~/keyring_backup
### Configure Gas Prices
As a validator, you'll need to set a minimum gas price like so:
```sh
GAS="0.02ujkl"
sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"$GAS\"/" $HOME/.canine/config/app.toml
@@ -61,9 +65,14 @@ sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"$GAS\"/" $HOME/
### Create Your Validator
Before continuing, please note that `commission-max-change` and `commission-max-rate` cannot be changed once you set them. Your `commission-rate` may be changed once per day.
Before continuing, please note that `commission-max-change` and `commission-max-rate` cannot be changed once you set
them. Your `commission-rate` may be changed once per day.
There are a few things you will need to alter in this command. `amount` needs to be changed to what you are starting
your self bond as. `from` needs to be the name of your wallet you created earlier.
The `moniker`, `details`, `identity`, `website`, and `security-contact` should all be filled with the appropiate
information.
There are a few things you will need to alter in this command. `amount` needs to be changed to what you are starting your self bond as. `from` needs to be the name of your wallet you created earlier. The `moniker`, `details`, `identity`, `website`, and `security-contact` should all be filled with the appropiate information.
```sh
canined tx staking create-validator \
--amount 1000000ujkl \
+1 -1
View File
@@ -1,4 +1,4 @@
{
"label": "Validators",
"position":1
"position": 1
}