CLI Cheatsheet
Wallet Operations with Axoned
Wallet Management
List All Wallets: Use the following to list all wallets using the test keyring backend:
axoned keys list --keyring-backend testCheck Wallet Balance: Retrieve the balance of a wallet address:
axoned query bank balances $(axoned keys show wallet -a --keyring-backend test) --node tcp://localhost:26657Send Tokens: Transfer tokens from one wallet to another. Replace
[to-address]and[amount]with the target address and token amount:axoned tx bank send wallet [to-address] [amount]uaxone --from wallet --chain-id axone-1 --keyring-backend test --gas auto --gas-adjustment 1.3 --fees 5000uaxone -y
Node Management
Start Node:
sudo systemctl start axoneStop Node:
sudo systemctl stop axoneRestart Node:
sudo systemctl restart axoneCheck Logs:
sudo journalctl -u axone -f -o catCheck Sync Status:
axoned status | jq .SyncInfo
Validator Operations
Check Validator Status:
Delegate to Validator:
Withdraw Rewards:
Unbond from Validator:
Governance
List Proposals:
View Proposal Details:
Vote on Proposal: Use this command to vote on a proposal by replacing
[proposal-id]and choosing your vote option:
Last updated