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