This cheatsheet provides a collection of commonly used CLI commands for Paloma node operators. It’s designed for easy copying and pasting, with a few conventions:
--chain-id
and --node
flags.jq
.Create a New Account:
palomad keys add <account_name> --keyring-backend <keyring_backend>
List All Accounts:
palomad keys list --keyring-backend <keyring_backend>
Show Account Details:
palomad keys show <account_name> --keyring-backend <keyring_backend>
palomad tx bank send <sender_address> <receiver_address> <amount>ugrain \ --chain-id tumbler \ --node https://paloma-rpc.chainroot.io:443 --gas=auto --gas-adjustment=1.5 \ --from <your_key>
palomad tx staking delegate <validator_address> <amount>ugrain \ --chain-id tumbler \ --node https://paloma-rpc.chainroot.io:443 --gas=auto --gas-adjustment=1.5 \ --from <your_key>
palomad tx gov vote PROPOSAL_NUMBER VOTE_OPTION \ --chain-id tumbler \ --node https://paloma-rpc.chainroot.io:443 --gas=auto --gas-adjustment=1.5 \ --from <your_key>
VOTE_OPTION
can be yes, no, no_with_veto, or abstain.Get Blockchain Status:
palomad status
Query Account Balances:
palomad query bank balances <account_address> --chain-id tumbler --node https://paloma-rpc.chainroot.io:443
Simulate a Transaction:
palomad tx simulate --from <your_key> [additional flags]
Broadcast a Transaction:
palomad tx broadcast <tx_file> --chain-id tumbler --node https://paloma-rpc.chainroot.io:443
Remember, always double-check your commands and configurations. For a complete list of commands and options, use palomad --help
or consult the Paloma documentation.