26 lines
517 B
Markdown
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
|
|
```
|