LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

dogecoincore

Dogecoin Core daemon and CLI client

TLDR

Start the Dogecoin daemon
$ dogecoind -daemon
copy
Get blockchain info
$ dogecoin-cli getblockchaininfo
copy
Get wallet balance
$ dogecoin-cli getbalance
copy
Send Dogecoin to an address
$ dogecoin-cli sendtoaddress "[address]" [amount]
copy
Stop the daemon
$ dogecoin-cli stop
copy

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.

SEE ALSO

electrum(1), geth(1)

Copied to clipboard
Kai