dogecoincore
Dogecoin Core daemon and CLI client
TLDR
Start the Dogecoin daemon
$ dogecoind -daemon
Get blockchain info$ dogecoin-cli getblockchaininfo
Get wallet balance$ dogecoin-cli getbalance
Send Dogecoin to an address$ dogecoin-cli sendtoaddress "[address]" [amount]
Stop the daemon$ dogecoin-cli stop
SYNOPSIS
dogecoind [options]dogecoin-cli [options] command [params]
DESCRIPTION
Dogecoin Core consists of dogecoind, the full node daemon that validates and relays transactions on the Dogecoin network, and dogecoin-cli, a command-line client for interacting with the daemon via JSON-RPC.The CLI supports wallet operations (sending, receiving, balance queries), blockchain queries, network management, and mining controls. Configuration is stored in dogecoin.conf.
PARAMETERS
-daemon
Run dogecoind in the background as a daemon.-testnet
Use the test network.-datadir DIR
Specify data directory.-conf FILE
Specify configuration file.-rpcuser USER
Username for JSON-RPC connections.-rpcpassword PASS
Password for JSON-RPC connections.-rpcport PORT
Listen for JSON-RPC connections on this port.-help
Display help information.-version
Display version information.
CAVEATS
Running a full node requires downloading the entire Dogecoin blockchain. The daemon must be running for dogecoin-cli to work. Based on Bitcoin Core.
