Command-line tools for wallet management, node interaction, and blockchain queries.
PYRAX CLI provides command-line utilities for interacting with the PYRAX blockchain.
cargo install --path .Download from Releases.
# Create new wallet
pyrax-cli wallet create
# Import from mnemonic
pyrax-cli wallet import --mnemonic "word1 word2 ..."
# Check balance
pyrax-cli wallet balance
# Send tokens
pyrax-cli wallet send --to <address> --amount <amount># Check node status
pyrax-cli node status
# List connected peers
pyrax-cli node peers
# Get sync status
pyrax-cli node sync# Get block by hash
pyrax-cli block get --hash <hash>
# Get transaction
pyrax-cli tx get --txid <txid>
# Get address info
pyrax-cli address info <address># Set RPC endpoint
pyrax-cli config set rpc-url https://rpc.pyrax.org
# Set network
pyrax-cli config set network mainnetMIT License - see LICENSE for details.