BitCanna Network

SERVICE
CLI

Safe Block

Staking Service

BITCANNA VALIDATOR SETUP

# CREATE BITCANNA WALLET OR RECOVER YOUR WALLET

# Create a New Wallet
bcnad keys add validator

# Recover Wallet
bcnad keys add validator --recover

IMPORTANT: Send a few $BCNA to your Validator Wallet before start a validator

# Find your public address of your validator wallet
bcnad keys list

# CREATE VALIDATOR

bcnad tx staking create-validator \
--amount 1000000ubcna \
--commission-max-change-rate 0.01 \
--commission-max-rate 0.2 \
--commission-rate 0.05 \
--from validator \
--min-self-delegation 1 \
--moniker "Your Validator Name" \
--identity "your keybase-pgp" \
--security-contact "your security contact mail" \
--website "https://yourwebsite.com" \
--details "Add a description of your node" \
--pubkey $(bcnad tendermint show-validator) \
--chain-id bitcanna-1 \
--gas auto \
--gas-adjustment 1.5 \
--gas-prices 0.010ubcna

# CHECK YOUR VOTING POWER

# Ckeck Your Voting Power
curl -s http://0.0.0.0:26656/status | jq -r .result.validator_info.voting_power