Command
Wallet:
Add New Wallet:
arkeod keys add wallet
Restore executing wallet:
arkeod keys add wallet --recover
List All Wallets:
arkeod keys list
Delete wallet:
arkeod keys delete wallet
Check Balance:
arkeod q bank balances $(arkeod keys show wallet -a)
Validator:
Create Validator:
arkeod tx validation create-validator <(cat <<EOF
{
"pubkey": $(arkeod comet show-validator),
"amount": "1000000uarkeo",
"moniker": "Node39-Guide",
"identity": "YOUR_KEYBASE_ID",
"website": "YOUR_WEBSITE_URL",
"security-contact": "YOUR_SECURITY_EMAIL",
"details": "YOUR_DETAILS",
"commission-rate": "0.05",
"commission-max-rate": "0.20",
"commission-max-change-rate": "0.05",
"min-self-delegation": "1"
}
EOF
) \
--from wallet \
--chain-id arkeo-main-v1 \
--fees 200uarkeo
-y
Check sync | False -> done.
arkeod status 2>&1 | jq .SyncInfo.catching_up
Delegate:
arkeod tx staking delegate $(arkeod keys show wallet --bech val -a) 1000000uarkeo \
--from wallet \
--chain-id=arkeo-main-v1 \
--fees 200uarkeo \
--node=https://arkeo-rpc.node39.top:443 \
-y
Withdraw rewards and commission:
arkeod tx distribution withdraw-rewards $(arkeod keys show wallet --bech val -a) \
--commission \
--from wallet \
--chain-id=arkeo-main-v1 \
--fees 200uarkeo \
--node=https://arkeo-rpc.node39.top:443 \
-y
Unjail:
--from wallet \
--chain-id=arkeo-main-v1 \
--fees 200uarkeo \
--node=https://arkeo-rpc.node39.top:443 \
-y
Unbond:
arkeod tx staking unbond $(arkeod keys show wallet --bech val -a) 1000000uarkeo \
--from wallet \
--chain-id=arkeo-main-v1 \
--fees 200uarkeo \
--node=https://arkeo-rpc.node39.top:443 \
-y
Vote:
yes/no/no_with_veto/abstain
arkeod tx gov vote 1 yes \
--from wallet \
--chain-id arkeo-main-v1 \
--fees 200uarkeo \
--node=https://arkeo-rpc.node39.top:443 \
-y
System:
Reload Service:
sudo systemctl daemon-reload
Enable Service:
sudo systemctl enable arkeod
Disable Service:
sudo systemctl disable arkeod
Start Service:
sudo systemctl start arkeod
Stop Service:
sudo systemctl stop arkeod
Restart Service:
sudo systemctl restart arkeod
Check Service Status:
sudo systemctl status arkeod
Check Service Logs:
sudo journalctl -u arkeod -fo cat