circle-arrow-up-rightCLI 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 test
  • Check Wallet Balance: Retrieve the balance of a wallet address:

    axoned query bank balances $(axoned keys show wallet -a --keyring-backend test) --node tcp://localhost:26657
  • Send 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 axone
  • Stop Node:

    sudo systemctl stop axone
  • Restart Node:

    sudo systemctl restart axone
  • Check Logs:

    sudo journalctl -u axone -f -o cat
  • Check 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