-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapplication.example.conf
40 lines (36 loc) · 1.67 KB
/
application.example.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# rename this file to application.conf
# change the relevant values accordingly
# configurations for connecting to bitcoind
bitcoind-rpc {
# bitcoind rpc username
rpcuser = "username"
# bitcoind rpc password
# If your password contains the characters '$','{', '}', '[', ']', ':', '=', ',', '+', '#', '`', '^', '?', '!', '@', '*', '&', whitespace
# or the string "//", enclose it in double quotes
# rpcpassword = "password=" if the original password is password=, rpcpassword = "passwo//rd" if the original password is passwo//rd etc.
# If it contains '\' or '"', escape it with '\'
# rpcpassword = "pass\\word" if the original password is pass\word, rpcpassword = "pass\"word" if the original password is pass"word
rpcpassword = "password"
# Binary location of bitcoind
# binary = ${HOME}/.bitcoin-s/binaries/bitcoind/bitcoin-0.20.1/bin/bitcoind
# bitcoind datadir
# datadir = ${HOME}/.bitcoin
# bitcoind network host
# connect = localhost
# bitcoind p2p port
# port = 8333
# bitcoind rpc host
# rpcconnect = localhost
# bitcoind rpc port
# rpcport = 8332
# bitcoind zmq raw tx
# zmqpubrawtx = "tcp://127.0.0.1:28332"
# bitcoind zmq raw block
# zmqpubrawblock = "tcp://127.0.0.1:28333"
# bitcoind zmq hash tx
# zmqpubhashtx = "tcp://127.0.0.1:28330"
# bitcoind zmq raw block
# zmqpubhashblock = "tcp://127.0.0.1:28331"
#If you have a bitcoind instance that is running remotely on another machine, you should set it to true
isRemote = false
}