Skip to content

Commit dd287ee

Browse files
committed
Update default values for commission and gas prices
1 parent ed88b7f commit dd287ee

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/validator-guide/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,15 @@ P.S. in case of using Ledger Nano device it would be helpful to use [this instru
7777
* **`from`**: Key alias of the node operator account that makes the initial stake
7878
* **`min-self-delegation`**: Minimum amount of tokens that the node operator promises to keep bonded
7979
* **`pubkey`**: Node's `bech32`-encoded validator public key from the previous step
80-
* **`commission-rate`**: Validator's commission rate
80+
* **`commission-rate`**: Validator's commission rate. The minimum is set to `0.05`.
8181
* **`commission-max-rate`**: Validator's maximum commission rate, expressed as a number with up to two decimal points. The value for this cannot be changed later.
8282
* **`commission-max-change-rate`**: Maximum rate of change of a validator's commission rate per day, expressed as a number with up to two decimal points. The value for this cannot be changed later.
8383
* **`chain-id`**: Unique identifier for the chain.
8484
* For cheqd's current mainnet, this is `cheqd-mainnet-1`
85-
* For cheqd's current testnet, this is `cheqd-testnet-4`
85+
* For cheqd's current testnet, this is `cheqd-testnet-6`
8686
* **`gas`**: Maximum gas to use for *this specific* transaction. Using `auto` uses Cosmos's auto-calculation mechanism, but can also be specified manually as an integer value.
87-
* **gas-adjustment** (optional): If you're using `auto` gas calculation, this parameter multiplies the auto-calculated amount by the specified factor, e.g., `1.2`. This is recommended so that it leaves enough margin of error to add a bit more gas to the transaction and ensure it successfully goes through.
88-
* **`gas-prices`**: Maximum gas price set by the validator
87+
* **gas-adjustment** (optional): If you're using `auto` gas calculation, this parameter multiplies the auto-calculated amount by the specified factor, e.g., `1.3`. This is recommended so that it leaves enough margin of error to add a bit more gas to the transaction and ensure it successfully goes through.
88+
* **`gas-prices`**: Maximum gas price set by the validator. Default value is `50ncheq`.
8989

9090
Please note the parameters below are just an “**example**”.
9191

@@ -94,7 +94,7 @@ When setting parameters such as the commission rate, a good benchmark is to cons
9494
You will see the commission they set, the max rate they set, and the rate of change. Please use this as a guide when thinking of your own commission configurations. This is important to get right, because the `commission-max-rate` and `commission-max-change-rate` cannot be changed after they are initially set.
9595

9696
```bash
97-
cheqd-noded tx staking create-validator --amount 1000000000ncheq --from key-alias-name --moniker mainnet-validator-name --chain-id cheqd-mainnet-1 --min-self-delegation="1" --gas auto --gas-adjustment 1.2 --gas-prices="25ncheq" --pubkey '{"@type":"/cosmos.crypto.ed25519.PubKey","key":"4anVUO8WhmRMqG1t4z6VxqmqZL3V7q6HqucjwZePiUw="}' --commission-max-change-rate 0.01 --commission-max-rate 0.2 --commission-rate 0.01 --node https://rpc.cheqd.net:443
97+
cheqd-noded tx staking create-validator --amount 1000000000ncheq --from key-alias-name --moniker mainnet-validator-name --chain-id cheqd-mainnet-1 --min-self-delegation="1" --gas auto --gas-adjustment 1.3 --gas-prices="50ncheq" --pubkey '{"@type":"/cosmos.crypto.ed25519.PubKey","key":"4anVUO8WhmRMqG1t4z6VxqmqZL3V7q6HqucjwZePiUw="}' --commission-max-change-rate 0.01 --commission-max-rate 0.2 --commission-rate 0.05 --node https://rpc.cheqd.net:443
9898
```
9999

100100
1. **Check that your validator node is bonded**

0 commit comments

Comments
 (0)