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