#check logs
sudo journalctl -u pellcored -f
#start service
sudo systemctl start pellcored
#stop service
sudo systemctl stop pellcored
#restart service
sudo systemctl restart pellcored
#service status
sudo systemctl status pellcored
#enable service
sudo systemctl enable pellcored
#disable service
sudo systemctl disable pellcored
#reload all service files
sudo systemctl daemon-reload
#get node info
pellcored status 2>&1 | jq -r
#get node id
pellcored tendermint show-node-id
#add new wallet
pellcored keys add <wallet-name>
#restore existing wallet
pellcored keys add <wallet-name> --recover
#delete wallet
pellcored keys delete <wallet-name>
#list all wallets
pellcored keys list
#check balance
pellcored q bank balances <wallet-address>
#withdraw all rewards
pellcored tx distribution withdraw-all-rewards --from <wallet-name> --chain-id ignite_186-1 --gas auto --gas-adjustment 1.5 --gas-prices 1000000000apell --node "https://rpc.pell.testnet.dteam.tech:443" -y
#withdraw rewards from specific validator
pellcored tx distribution withdraw-rewards <validator-valoper-address> --from <wallet-name> --chain-id ignite_186-1 --gas auto --gas-adjustment 1.5 --gas-prices 1000000000apell --node "https://rpc.pell.testnet.dteam.tech:443" -y
#delegate
pellcored tx staking delegate <validator-valoper-address> ${10**network.other.denom_exponent}apell --from <wallet-name> --chain-id ignite_186-1 --gas auto --gas-adjustment 1.5 --gas-prices 1000000000apell --node "https://rpc.pell.testnet.dteam.tech:443" -y
#redelegate
pellcored tx staking redelegate <from-validator-valoper-address> <to-validator-valoper-address> ${10**network.other.denom_exponent}apell --from <wallet-name> --chain-id ignite_186-1 --gas auto --gas-adjustment 1.5 --gas-prices 1000000000apell --node "https://rpc.pell.testnet.dteam.tech:443" -y
#unbond
pellcored tx staking unbond <validator-valoper-address> ${10**network.other.denom_exponent}apell --from <wallet-name> --chain-id ignite_186-1 --gas auto --gas-adjustment 1.5 --gas-prices 1000000000apell --node "https://rpc.pell.testnet.dteam.tech:443" -y
#transfer
pellcored tx bank send <wallet-name> <wallet-address> ${10**network.other.denom_exponent}apell --chain-id ignite_186-1 --gas auto --gas-adjustment 1.5 --gas-prices 1000000000apell --node "https://rpc.pell.testnet.dteam.tech:443" -y
#vote "yes"
pellcored tx gov vote <proposal-id> yes --from <wallet-name> --chain-id ignite_186-1 --gas auto --gas-adjustment 1.5 --gas-prices 1000000000apell --node "https://rpc.pell.testnet.dteam.tech:443" -y
#vote "no"
pellcored tx gov vote <proposal-id> no --from <wallet-name> --chain-id ignite_186-1 --gas auto --gas-adjustment 1.5 --gas-prices 1000000000apell --node "https://rpc.pell.testnet.dteam.tech:443" -y
#vote "no with veto"
pellcored tx gov vote <proposal-id> no_with_veto --from <wallet-name> --chain-id ignite_186-1 --gas auto --gas-adjustment 1.5 --gas-prices 1000000000apell --node "https://rpc.pell.testnet.dteam.tech:443" -y
#vote "abstain"
pellcored tx gov vote <proposal-id> abstain --from <wallet-name> --chain-id ignite_186-1 --gas auto --gas-adjustment 1.5 --gas-prices 1000000000apell --node "https://rpc.pell.testnet.dteam.tech:443" -y
#view all proposals
pellcored query gov proposals
#view proposal by ID
pellcored query gov proposal <proposal-id>
#create validator
pellcored tx staking create-validator \
--amount 1000000apell \
--moniker "" \
--identity "" \
--details "" \
--website "" \
--security-contact "" \
--pubkey $(pellcored tendermint show-validator) \
--commission-rate 0.05 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--chain-id ignite_186-1 \
--from <wallet-name> \
--gas auto \
--gas-adjustment 1.5 \
--gas-prices 1000000000apell \
--node "https://rpc.pell.testnet.dteam.tech:443" \
-y
#edit validator
pellcored tx staking edit-validator \
--new-moniker "" \
--identity "" \
--details "" \
--website "" \
--security-contact "" \
--commission-rate 0.05 \
--chain-id ignite_186-1 \
--from <wallet-name> \
--gas auto \
--gas-adjustment 1.5 \
--gas-prices 1000000000apell \
--node "https://rpc.pell.testnet.dteam.tech:443" \
-y
#unjail validator
pellcored tx slashing unjail --from <wallet-name> --chain-id ignite_186-1 --gas auto --gas-adjustment 1.5 --gas-prices 1000000000apell --node "https://rpc.pell.testnet.dteam.tech:443" -y