Validator Setup

Import Wallet

tacchaind --home .tacchaind keys unsafe-import-eth-key <your-wallet-name> <ETH-PRIVATE-KEY>

Create validator transaction

Fund your account with this faucet

cat > validatortx.json <<EOF
{
  "pubkey": $(tacchaind tendermint show-validator),
  "amount": "1000000000000000000utac",
  "moniker": "<YOUR_NODE_NAME>",
  "identity": "",
  "website": "",
  "security": "",
  "details": "",
  "commission-rate": "0.1",
  "commission-max-rate": "0.2",
  "commission-max-change-rate": "0.01",
  "min-self-delegation": "1"
}
EOF
tacchaind --home .tacchaind tx staking create-validator validatortx.json \
  --from <your-wallet-name> \
  --chain-id tacchain_2391-1 \
  --gas auto \
  --gas-adjustment 1.3 \
  --fees 2500utac \
  -y

Last updated