xnodeer
  • HOME
  • TESTNET
    • Entangle
      • installation
      • Create Validator
      • Full Command
    • 0G
      • installation
      • create-validator
    • Selfchain
      • installation
      • Create Validator
      • Full Command
    • Taiko
Powered by GitBook
On this page
  1. TESTNET
  2. Selfchain

Create Validator

#change <moniker> with your node name

selfchaind tx staking create-validator \
    --amount=1000000000uself \
    --node http://165.232.125.66:26657 \
    --pubkey=$(selfchaind tendermint show-validator) \
    --moniker="<moniker>" \
    --website="https://selfchain.xyz" \
    --details="This is a validator that was added post genesis" \
    --chain-id="self-dev-1" \
    --commission-rate="0.10" \
    --commission-max-rate="0.15" \
    --commission-max-change-rate="0.05" \
    --min-self-delegation="1000000000" \
    --broadcast-mode block \
    --gas="auto" \
    --gas-adjustment="1.2" \
    --gas-prices="0.5uself" \
    --keyring-backend file \
    --keyring-dir $HOME/keys \
    --from="wallet"

Validator Edit

selfchaind tx staking edit-validator \
    --new-moniker "moniker-yazınız" \
    --from="adres-yazınız" \
    --identity="" \
    --website="" \
    --details="❤️" \
    --security-contact="" \
    --broadcast-mode block \
    --gas="auto" \
    --gas-adjustment="1.2" \
    --gas-prices="0.5uself" \
    --keyring-backend file \
    --keyring-dir $HOME/keys \
    -y
PreviousinstallationNextFull Command

Last updated 1 year ago