📚Useful commands📚
⚙️Service
Info
Copy arkeod status 2>&1 | jq .NodeInfo
arkeod status 2>&1 | jq .SyncInfo
arkeod status 2>&1 | jq .ValidatorInfo
Check node logs
Copy sudo journalctl -fu arkeod -o cat
Check service status
Copy sudo systemctl status arkeod
Restart service
Copy sudo systemctl restart arkeod
Stop service
Copy sudo systemctl stop arkeod
Start service
Copy sudo systemctl start arkeod
reload/disable/enable
Copy sudo systemctl daemon-reload
sudo systemctl disable arkeod
sudo systemctl enable arkeod
Your Peer
Copy echo $(arkeod tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.arkeo/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
🥅Working with keys
New Key or Recover Key
Copy arkeod keys add Wallet_Name
OR
arkeod keys add Wallet_Name --recover
Check all keys
Check Balance
Copy arkeod query bank balances tarkeo...addressjkl1yjgn7z09ua9vms259j
Delete Key
Copy arkeod keys delete Wallet_Name
Export Key
Copy arkeod keys export wallet
Import Key
Copy arkeod keys import wallet wallet.backup
🚀Validator Management
Edit Validator
Copy arkeod tx staking edit - validator \
--new - moniker "Your_Moniker" \
--identity "Keybase_ID" \
--details "Your_Description" \
--website "Your_Website" \
--security - contact "Your_Email" \
--chain - id arkeo \
--commission - rate 0.05 \
-- from Wallet_Name \
--gas 350000 \
--fees 70000uarkeo - y
Your Valoper-Address
Copy arkeod keys show Wallet_Name --bech val
Your Valcons-Address
Copy arkeod tendermint show-address
Your Validator-Info
Copy arkeod query staking validator tarkeovaloperaddress......
Jail Info
Copy arkeod query slashing signing-info $( arkeod tendermint show-validator )
Unjail
Copy arkeod tx slashing unjail -- from Wallet_name --chain - id arkeo --gas 350000 --fees "7000" uarkeo - y
Active Validators List
Copy arkeod q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nl
Inactive Validators List
Copy arkeod q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_UNBONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nl
Check that your key matches the validator (Win - Good . Lose - Bad )
Copy VALOPER = Enter_Your_valoper_Here
[[ $(arkeod q staking validator $VALOPER -oj | jq -r .consensus_pubkey.key) = $(arkeod status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "\nYou win\n" || echo -e "\nYou lose\n"
Withdraw all rewards from all validators
Copy arkeod tx distribution withdraw - all - rewards -- from Wallet_Name --chain - id arkeo --gas 350000 --fees "7000" uarkeo - y
Withdraw and commission from your Validator
Copy arkeod tx distribution withdraw-rewards tarkeovaloper1amxp0k0hg4edrxg85v07t9ka2tfuhamhldgf8e --from Wallet_Name --gas 350000 --fees "7000"uarkeo --chain-id=arkeo --commission -y
Delegate tokens to your validator
Copy arkeod tx staking delegate Your_tarkeovalpoer........ "100000000"uarkeo --from Wallet_Name --gas 350000 --fees "7000"uarkeo --chain-id=arkeo -y
Delegate tokens to different validator
Copy arkeod tx staking delegate tarkeovalpoer........ "100000000"uarkeo --from Wallet_Name --gas 350000 --fees "7000"uarkeo --chain-id=arkeo -y
Redelegate tokens to another validator
Copy arkeod tx staking redelegate Your_arkeovalpoer........ arkeovalpoer........ "100000000"uarkeo --from Wallet_Name --gas 350000 --fees "7000"uarkeo --chain-id=arkeo -y
Unbond tokens from your validator or different validator
Copy arkeod tx staking unbond Your_arkeovalpoer........ "100000000"uarkeo --from Wallet_Name --gas 350000 --fees "7000"uarkeo --chain-id=arkeo -y
arkeod tx staking unbond arkeovalpoer........ "100000000"uarkeo --from Wallet_Name --gas 350000 --fees "7000"uarkeo --chain-id=arkeo -y
Transfer tokens from wallet to wallet
Copy arkeod tx bank send Your_arkeoaddress............ arkeoaddress........... "100000000000"uarkeo --gas 350000 --fees "7000"uarkeo --chain-id=arkeo -y
📝Governance
View all proposals
Copy arkeod query gov proposals
View specific proposal
Copy arkeod query gov proposal 1
Vote yes
Copy arkeod tx gov vote 1 yes -- from Wallet_Name --gas 350000 --fees "7000" uarkeo --chain - id = arkeo - y
Vote no
Copy arkeod tx gov vote 1 no -- from Wallet_Name --gas 350000 --fees "7000" uarkeo --chain - id = arkeo - y
Vote abstain
Copy arkeod tx gov vote 1 abstain -- from Wallet_Name --gas 350000 --fees "7000" uarkeo --chain - id = arkeo - y
Vote no_with_veto
Copy arkeod tx gov vote 1 no_with_veto -- from Wallet_Name --gas 350000 --fees "7000" uarkeo --chain - id = arkeo - y
📡IBC transfer
for exapmle - Arkeo-> Osmosis
Copy arkeod tx ibc-transfer transfer transfer channel-2 Your_OSMOaddress............ "100000"uarkeo --from Your_Arkeo_Wallet_Name ---gas 350000 --fees "7000"uarkeo --chain-id=arkeo -y
Last updated 7 months ago