Validator Operations

# Get Validator profile registeration Command At
https://test6.testnets.gno.land/r/gnoland/valopers$help

At Top of the page add your wallet address in the key/address field
Then proceed to
https://test6.testnets.gno.land/r/gnoland/valopers$help#func-Register

Input your Validator Details

Or use the below command
# Get Account Number and Sequence Sequence - Needs to be done everytime before making an transaction
gnokey query -remote "https://rpc.test6.testnets.gno.land" auth/accounts/$WALLET

Replace the Value of $ACCOUNTNUMBER and $SEQUENCENUMBER  got from the above steps in the below command. 

gnokey maketx call -pkgpath "gno.land/r/gnoland/valopers" -func "Auth"  -gas-fee 1000000ugnot -gas-wanted 30000000 -send "" $WALLET > call.tx
gnokey sign -tx-path call.tx -chainid "test6" -account-number $ACCOUNTNUMBER -account-sequence $SEQUENCENUMBER $WALLET
gnokey broadcast -remote "https://rpc.test6.testnets.gno.land" call.tx

Last updated