Configuration File
Dash Core settings
To use dashd
and dash-cli
, you will need to add a RPC password to your dash.conf
file. Both programs will read from the same file if both run on the same system as the same user, so any long random password will work:
rpcpassword=change_this_to_a_long_random_password
You should also make the dash.conf
file only readable to its owner. On Linux, Mac OSX, and other Unix-like systems, this can be accomplished by running the following command in the Dash Core application directory:
chmod 0600 dash.conf
For development, it's safer and cheaper to use Dash's test network (testnet), regression test mode (regtest), or a developer network (devnet) described below.
Questions about Dash use are best sent to the Dash forum and Discord channels.
Example Testnet Config
testnet=1
# RPC Settings
rpcuser=user
rpcpassword=pass
rpcallowip=127.0.0.1
#----
listen=1
server=1
# Index Settings
txindex=1
addressindex=1
timestampindex=1
spentindex=1
[test]
rpcport=19998
Configuration sections for different networks
Added in Dash Core 0.16
Since Dash Core 0.16 it is possible for a single configuration file to set different options for different networks. This is done by using sections or by prefixing the option with the network as shown below:
Valid Section Names
Please note that the only valid section names are
[main]
,[test]
,[regtest]
, and[devnet]
.
# Enable RPC server for all networks
server=1
[main]
# Set custom mainnet ports
port=9989
rpcport=9988
# Set custom mainnet RPC auth
rpcuser=mainnetuser
rpcpassword=mainnetpass
[test]
# Set custom testnet RPC auth
rpcuser=testnetuser
rpcpassword=testnetpass
# Enabling indexing
txindex=1
addressindex=1
timestampindex=1
spentindex=1
[regtest]
mempoolsize=20
[devnet]
port=21999
rpcport=21998
With this configuration file, dashd, dash-qt, or dash-cli can be run with the -conf=<configuration file>
along with the -testnet
, -regtest
, or -devnet=<devnet name>
parameter to select the correct settings.
The following options will only apply to mainnet unless they are in a section (e.g.,
[test]
):addnode=
,connect=
,port=
,bind=
,rpcport=
,rpcbind=
andwallet=
.
The options to choose a network (regtest=
andtestnet=
) must be specified outside of sections.
Updated almost 4 years ago