Skip to main content

Command

Wallet:

Add New Wallet:

axoned keys add wallet

Restore executing wallet:

axoned keys add wallet --recover

List All Wallets:

axoned keys list

Delete wallet:

axoned keys delete wallet

Check Balance:

axoned q bank balances $(axoned keys show wallet -a)

Validator:

Create Validator:

axoned tx staking create-validator <(cat <<EOF
{
"pubkey": $(axoned comet show-validator),
"amount": "1000000uaxone",
"moniker": "Node39 Guide",
"identity": "xxxxxxxxxxx",
"website": "xxxxxxxxxxx",
"security": "xxxxxxxxxxx",
"details": "xxxxxxxxxxx",
"commission-rate": "0.05",
"commission-max-rate": "0.20",
"commission-max-change-rate": "0.05",
"min-self-delegation": "1"
}
EOF
) \
--chain-id axone-1 \
--from wallet \
--gas-prices=0.001uaxone \
--gas-adjustment=1.5 \
--gas=auto \
-y

Check sync | False -> done.

axoned status 2>&1 | jq .SyncInfo.catching_up

Delegate:

axoned tx staking delegate $(axoned keys show wallet --bech val -a) 1000000uaxone \
--from wallet \
--chain-id=axone-1 \
--gas-prices=0.001uaxone \
--gas-adjustment=1.5 \
--gas=auto \
--node=https://axone-rpc.node39.top:443 \
-y

Withdraw rewards and commission:

axoned tx distribution withdraw-rewards $(axoned keys show wallet --bech val -a) \
--commission \
--from wallet \
--chain-id=axone-1 \
--gas-prices=0.001uaxone \
--gas-adjustment=1.5 \
--gas=auto \
--node=https://axone-rpc.node39.top:443 \
-y

Unjail:

--from wallet \
--chain-id=axone-1 \
--gas-prices=0.001uaxone \
--gas-adjustment=1.5 \
--gas=auto \
--node=https://axone-rpc.node39.top:443 \
-y

Unbond:

axoned tx staking unbond $(axoned keys show wallet --bech val -a) 1000000uaxone \
--from wallet \
--chain-id=axone-1 \
--gas-prices=0.001uaxone \
--gas-adjustment=1.5 \
--gas=auto \
--node=https://axone-rpc.node39.top:443 \
-y

Vote:

yes/no/no_with_veto/abstain

axoned tx gov vote 1 yes \
--from wallet \
--chain-id axone-1 \
--gas-prices=0.001uaxone \
--gas-adjustment=1.5 \
--gas=auto \
--node=https://axone-rpc.node39.top:443 \
-y

System:

Reload Service:

sudo systemctl daemon-reload

Enable Service:

sudo systemctl enable axoned

Disable Service:

sudo systemctl disable axoned

Start Service:

sudo systemctl start axoned

Stop Service:

sudo systemctl stop axoned

Restart Service:

sudo systemctl restart axoned

Check Service Status:

sudo systemctl status axoned

Check Service Logs:

sudo journalctl -u axoned -fo cat