```{eval-rst} .. _dashcore-arguments-and-commands-dash-cli: .. meta:: :title: dash-cli Wallet Arguments and Commands :description: The section includes command-line option for accessing Dash Core RPCs via the dash-cli application. ``` # dash-cli The `dash-cli` application provides a command-line option for accessing Dash Core RPCs. ## Usage > 🚧 Multiple wallet support > > Since Dash Core 18.0 introduced the ability to have multiple wallets loaded at the same time, wallet-related RPCs require using the `-rpcwallet` option any time more than one wallet file is loaded. This is to ensure the RPC command is executed using the correct wallet. The syntax is: > `dash-cli -rpcwallet= ` ```bash Send command dash-cli [options] [params] ``` ```bash Send command using wallet dash-cli [options] -rpcwallet= [params] ``` ```bash Send command (with named arguments) dash-cli [options] -named [name=value] ... ``` ```bash List commands dash-cli [options] help ``` ```bash Get help for command dash-cli [options] help ``` > 📘 RPC Details > > View [the list of RPCs](../api/remote-procedure-call-quick-reference.md) for more detailed information. Using dash-cli, this information is available using the `dash-cli [options] help` and `dash-cli [options] help ` commands. ### Options ```text -? Print this help message and exit -conf= Specify configuration file. Relative paths will be prefixed by datadir location. (default: dash.conf) -datadir= Specify data directory -generate Generate blocks immediately, equivalent to RPC getnewaddress followed by RPC generatetoaddress. Optional positional integer arguments are number of blocks to generate (default: 1) and maximum iterations to try (default: 1000000), equivalent to RPC generatetoaddress nblocks and maxtries arguments. Example: dash-cli -generate 4 1000 -getinfo Get general information from the remote server. Note that unlike server-side RPC calls, the results of -getinfo is the result of multiple non-atomic requests. Some entries in the result may represent results from different states (e.g. wallet balance may be as of a different block from the chain state reported) -named Pass named instead of positional arguments (default: false) -netinfo Get network peer connection information from the remote server. An optional integer argument from 0 to 4 can be passed for different peers listings (default: 0). Pass "help" for detailed help documentation. -rpcclienttimeout= Timeout in seconds during HTTP requests, or 0 for no timeout. (default: 900) -rpcconnect= Send commands to node running on (default: 127.0.0.1) -rpccookiefile= Location of the auth cookie. Relative paths will be prefixed by a net-specific datadir location. (default: data dir) -rpcpassword= Password for JSON-RPC connections -rpcport= Connect to JSON-RPC on (default: 9998, testnet: 19998, regtest: 19898) -rpcuser= Username for JSON-RPC connections -rpcwait Wait for RPC server to start -rpcwallet= Send RPC for non-default wallet on RPC server (needs to exactly match corresponding -wallet option passed to dashd). This changes the RPC endpoint used, e.g. http://127.0.0.1:9998/wallet/ -stdin Read extra arguments from standard input, one per line until EOF/Ctrl-D (recommended for sensitive information such as passphrases). When combined with -stdinrpcpass, the first line from standard input is used for the RPC password. -stdinrpcpass Read RPC password from standard input as a single line. When combined with -stdin, the first line from standard input is used for the RPC password. When combined with -stdinwalletpassphrase, -stdinrpcpass consumes the first line, and -stdinwalletpassphrase consumes the second. -stdinwalletpassphrase Read wallet passphrase from standard input as a single line. When combined with -stdin, the first line from standard input is used for the wallet passphrase. -version Print version and exit ``` ### Chain selection options ```text -chain= Use the chain (default: main). Allowed values: main, test, regtest -devnet= Use devnet chain with provided name -highsubsidyblocks= The number of blocks with a higher than normal subsidy to mine at the start of a chain. Block after that height will have fixed subsidy base. (default: 0, devnet-only) -highsubsidyfactor= The factor to multiply the normal block subsidy by while in the highsubsidyblocks window of a chain (default: 1, devnet-only) -llmqchainlocks= Override the default LLMQ type used for ChainLocks. Allows using ChainLocks with smaller LLMQs. (default: llmq_devnet, devnet-only) -llmqdevnetparams=: Override the default LLMQ size for the LLMQ_DEVNET quorum (default: 3:2, devnet-only) -llmqinstantsenddip0024= Override the default LLMQ type used for InstantSendDIP0024. (default: llmq_devnet_dip0024, devnet-only) -llmqmnhf= Override the default LLMQ type used for EHF. (default: llmq_devnet, devnet-only) -llmqplatform= Override the default LLMQ type used for Platform. (default: llmq_devnet_platform, devnet-only) -minimumdifficultyblocks= The number of blocks that can be mined with the minimum difficulty at the start of a chain (default: 0, devnet-only) -powtargetspacing= Override the default PowTargetSpacing value in seconds (default: 2.5 minutes, devnet-only) -testnet Use the test chain. Equivalent to -chain=test ```