canine-docs/docs/nodes/validators/1_joining.md
2022-10-27 09:35:06 -04:00

26 lines
517 B
Markdown

---
sidebar_position: 1
---
# Creating Validator
## Disclaimer
This guide assumes you are using the same machine as the full node.
## Setting Up
```sh
canined tx staking create-validator \
--amount 1000000ujkl \
--commission-max-change-rate 0.10 \
--commission-max-rate 0.2 \
--commission-rate 0.1 \
--from {WALLET_NAME} \
--min-self-delegation 1 \
--moniker {YOUR_MONIKER} \
--pubkey $(canined tendermint show-validator) \
--chain-id canine-1 \
--gas-prices 0.02ujkl
```