cli

Learn how to use the Dogecoin CLI to manage your Dogecoin node, check balances, list transactions, and send Dogecoin. Essential commands for Dogecoin users.

Dogecoin CLI

Dogecoin Command Line Interface (CLI) Guide

The Dogecoin CLI provides a powerful way to interact with your Dogecoin node directly from the command line. This guide covers essential commands for managing your wallet and network operations.

Check Dogecoin Balance

Use the getbalance command to retrieve the current balance of your Dogecoin wallet. Ensure your dogecoin.conf file is correctly configured.

dogecoin-cli -conf=/blockchain/config/dogecoin.conf getbalance

List Dogecoin Transactions

The listtransactions command displays a history of transactions associated with your wallet. You can filter and sort these transactions for detailed analysis.

dogecoin-cli -conf=/blockchain/config/dogecoin.conf listtransactions

Send Dogecoin to an Address

Use the sendtoaddress command to send Dogecoin to a specified address. This command requires the recipient's address, the amount, and optional labels and comments.

dogecoin-cli --conf=/blockchain/config/dogecoin.conf sendtoaddress "xxxxxxxxxxxx" 12.12345678 "donation" "james donation"

Additional Dogecoin CLI Resources

For more advanced commands and detailed explanations, refer to the official Dogecoin documentation and community resources.