-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'pokt/main' into issues/1034/scaffold/mo…
…rse_claimable_account * pokt/main: [Docs] Validator cheatsheet and walkthrough (#1012) [Dependencies] Bump `cosmos-sdk` client lib and switch `mockgen` to `uber`'s fork (#1069)
- Loading branch information
Showing
57 changed files
with
552 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,8 +78,7 @@ endif | |
|
||
# TODO_IMPROVE(@okdas): Add other dependencies (ignite, docker, k8s, etc) here | ||
.PHONY: install_ci_deps | ||
install_ci_deps: ## Installs `mockgen` and other go tools | ||
go install "github.com/golang/mock/[email protected]" && mockgen --version | ||
install_ci_deps: ## Installs `golangci-lint` and other go tools | ||
go install github.com/golangci/golangci-lint/cmd/[email protected] && golangci-lint --version | ||
go install golang.org/x/tools/cmd/goimports@latest | ||
go install github.com/mikefarah/yq/v4@latest | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
--- | ||
sidebar_position: 2 | ||
title: Validator FAQ | ||
--- | ||
|
||
## How do I delegate additional tokens to my Validator? | ||
|
||
To increase your self-delegation or allow others to delegate to your Validator, use: | ||
|
||
```bash | ||
poktrolld tx staking delegate $VALIDATOR_ADDR <amount> --from <delegator_account> $TX_PARAM_FLAGS $NODE_FLAGS | ||
``` | ||
|
||
Example with specific parameters: | ||
|
||
```bash | ||
poktrolld tx staking delegate $VALIDATOR_ADDR 1000000upokt --from your_account --chain-id=pocket-beta --gas=auto --gas-adjustment=1.5 --gas-prices=1upokt | ||
``` | ||
|
||
## How do I unbond (undelegate) tokens from my Validator? | ||
|
||
To unbond a portion of your staked tokens: | ||
|
||
```bash | ||
poktrolld tx staking unbond $VALIDATOR_ADDR <amount> --from <delegator_account> $TX_PARAM_FLAGS $NODE_FLAGS | ||
``` | ||
|
||
Example with specific parameters: | ||
|
||
```bash | ||
poktrolld tx staking unbond $VALIDATOR_ADDR 500000upokt --from your_account --chain-id=pocket-beta --gas=auto --gas-adjustment=1.5 --gas-prices=1upokt | ||
``` | ||
|
||
:::note Unbonding lock period | ||
|
||
Unbonding initiates a lock period during which tokens cannot be transferred. The duration depends on network configuration. | ||
|
||
::: | ||
|
||
## How do I check if my node is synchronized? | ||
|
||
Use the following command to check your node's synchronization status: | ||
|
||
```bash | ||
poktrolld status | ||
``` | ||
|
||
:::note Synchronization status | ||
|
||
Ensure that the `sync_info.catching_up` field is `false` to confirm that your node is fully synchronized. | ||
|
||
Your Full Node must be fully synchronized before creating a Validator. | ||
|
||
::: | ||
|
||
## How do I stay updated with network upgrades? | ||
|
||
**Monitor and follow**: | ||
|
||
- Upgrade notifications in [Pocket Network's Discord](https://discord.com/invite/pocket-network) | ||
- The [latest recommended version](../../operate/upgrades/upgrade_list.md) documentation | ||
|
||
## What security practices should I follow? | ||
|
||
- Never share or expose your mnemonic phrases and private keys | ||
- Store private keys and mnemonics in secure locations | ||
- Regularly monitor your Validator's status to prevent jailing from downtime | ||
- When setting up your validator: | ||
- The `commission-rate`, `commission-max-rate`, and `commission-max-change-rate` should be expressed as decimals (e.g., `0.1` for 10%) | ||
- Ensure you have sufficient balance for your specified amounts in `validator.json` and delegations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.