Useful commands
# Set Vars
MONIKER=<YOUR_MONIKER_NAME_GOES_HERE>
echo "export MONIKER=$MONIKER" >> $HOME/.bash_profile
echo "export PRYSM_CHAIN_ID="prysm-devnet-1"" >> $HOME/.bash_profile
source $HOME/.bash_profile
WALLET MANAGEMENT
Add Wallet Specify the value <wallet> with your own wallet name
#Add new wallet
prysmd keys add wallet
#Recover Wallet
prysmd keys add wallet --recover
#List Wallet
prysmd keys list
#Delete Wallet
prysmd keys delete wallet
#Check Wallet Balance
prysmd q bank balances $(prysmd keys show wallet -a)
VALIDATOR MANAGEMENT
Please adjust , MONIKER , YOUR_KEYBASE_ID , YOUR_DETAILS , YOUR_WEBSITE_URL
#check pubkey
prysmd tendermint show-validator
#Make file validator.json
tee $HOME/.prysm/validator.json > /dev/null << EOF
{
"pubkey": YOUR_PUBKEY,
"amount": "1000000uprysm",
"moniker": "MONIKER",
"identity": "YOUR_KEYBASE_ID",
"website": "YOUR_WEBSITE_URL",
"details": "YOUR_DETAILS.",
"commission-rate": "0.1",
"commission-max-rate": "0.2",
"commission-max-change-rate": "0.01",
"min-self-delegation": "1"
}
EOF
#Create Validator
prysmd --home $HOME/.prysm tx staking create-validator $HOME/.prysm/validator.json --from wallet --chain-id $PRYSM_CHAIN_ID --gas 220000 --gas-prices 1uprysm
#Edit Validator
prysmd tx staking edit-validator \
--new-moniker="YOUR MONIKER" \
--identity="IDENTITY KEYBASE" \
--details="DETAILS VALIDATOR" \
--website="LINK WEBSITE" \
--chain-id=$PRYSM_CHAIN_ID \
--from=wallet \
--gas-adjustment=1.5 \
--gas="auto" \
--gas-prices=1uprysm
#Unjail Validator
prysmd tx slashing unjail --from wallet --chain-id $PRYSM_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uprysm
#Check Jailed Reason
prysmd query slashing signing-info $(prysmd tendermint show-validator)
TOKEN MANAGEMENT
#Withdraw Rewards
prysmd tx distribution withdraw-all-rewards --from wallet --chain-id $PRYSM_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uprysm
#Withdraw Rewards with Comission
prysmd tx distribution withdraw-rewards $(prysmd keys show wallet --bech val -a) --commission --from wallet --chain-id $PRYSM_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uprysm
#Delegate Token to your own validator
prysmd tx staking delegate $(prysmd keys show wallet --bech val -a) 100000uprysm --from wallet --chain-id $PRYSM_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uprysm
#Delegate Token to other validator
prysmd tx staking redelegate $(prysmd keys show wallet --bech val -a) <TO_VALOPER_ADDRESS> 100000uprysm --from wallet --chain-id $PRYSM_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uprysm
#Unbond Token from your validator
prysmd tx staking unbond $(prysmd keys show wallet --bech val -a) 100000uprysm --from wallet --chain-id $PRYSM_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uprysm
#Send Token to another wallet
prysmd tx bank send wallet <TO_WALLET_ADDRESS> 100000uprysm --from wallet --chain-id $PRYSM_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uprysm
GOVERNANCE
#Vote, You can change the value of yes to no,abstain,nowithveto
prysmd tx gov vote 1 yes --from wallet --chain-id $PRYSM_CHAIN_ID --gas-adjustment 1.5 --gas auto --gas-prices 1uprysm
#List all proposals
prysmd query gov proposals
#Create new text proposal
prysmd tx gov submit-proposal \
--title="Title" \
--description="Description" \
--deposit=10000000uprysm \
--type="Text" \
--from=wallet \
--gas-adjustment 1.5 \
--gas "auto" \
--gas-prices=1uprysm
SERVICES MANAGEMENT
# Reload Service
sudo systemctl daemon-reload
# Enable Service
sudo systemctl enable prysmd
# Disable Service
sudo systemctl disable prysmd
# Start Service
sudo systemctl start prysmd
# Stop Service
sudo systemctl stop prysmd
# Restart Service
sudo systemctl restart prysmd
# Check Service Status
sudo systemctl status prysmd
# Check Service Logs
sudo journalctl -u prysmd -f --no-hostname -o cat
UTILITY
#Set Indexer NULL / KV
sed -i 's|^indexer *=.*|indexer = "kv"|' $HOME/.prysm/config/config.toml
#Get Validator info
prysmd status 2>&1 | jq .ValidatorInfo
#Get denom info
prysmd q bank denom-metadata -oj | jq
#Get sync status
prysmd status 2>&1 | jq .sync_info.catching_up
#Get latest height
prysmd status 2>&1 | jq .sync_info.latest_block_height
#Reset Node
prysmd tendermint unsafe-reset-all --home $HOME/.prysm --keep-addr-book
DELETE NODE
WARNING! Use this command wisely Backup your key first it will remove node from your system
sudo systemctl stop prysmd && sudo systemctl disable prysmd && sudo rm /etc/systemd/system/prysmd.service && sudo systemctl daemon-reload && sudo rm -rf $(which prysmd) && rm -rf $HOME/.prysm
Last updated