|
1 | 1 | [Application Options] |
2 | 2 |
|
3 | | -; The directory that lnd stores all wallet, chain, and channel related data |
4 | | -; within The default is ~/.lnd/data on POSIX OSes, $LOCALAPPDATA/Lnd/data on |
5 | | -; Windows, ~/Library/Application Support/Lnd/data on Mac OS, and $home/lnd/data |
| 3 | +; The directory that dcrlnd stores all wallet, chain, and channel related data |
| 4 | +; within The default is ~/.dcrlnd/data on POSIX OSes, $LOCALAPPDATA/Dcrlnd/data on |
| 5 | +; Windows, ~/Library/Application Support/Dcrlnd/data on Mac OS, and $home/dcrlnd/data |
6 | 6 | ; on Plan9. Environment variables are expanded so they may be used. NOTE: |
7 | 7 | ; Windows environment variables are typically %VARIABLE%, but they must be |
8 | 8 | ; accessed with $VARIABLE here. Also, ~ is expanded to $LOCALAPPDATA on Windows. |
9 | | -; datadir=~/.lnd/data |
| 9 | +; datadir=~/.dcrlnd/data |
10 | 10 |
|
11 | 11 | ; The directory that logs are stored in. The logs are auto-rotated by default. |
12 | 12 | ; Rotated logs are compressed in place. |
13 | | -; logdir=~/.lnd/logs |
| 13 | +; logdir=~/.dcrlnd/logs |
14 | 14 |
|
15 | 15 | ; Number of logfiles that the log rotation should keep. Setting it to 0 disables deletion of old log files. |
16 | 16 | ; maxlogfiles=3 |
|
37 | 37 | ; the line below. |
38 | 38 | ; no-macaroons=true |
39 | 39 |
|
40 | | -; Path to write the admin macaroon for lnd's RPC and REST services if it |
| 40 | +; Path to write the admin macaroon for dcrlnd's RPC and REST services if it |
41 | 41 | ; doesn't exist. This can be set if one wishes to store the admin macaroon in a |
42 | | -; distinct location. By default, it is stored within lnd's network directory. |
| 42 | +; distinct location. By default, it is stored within dcrlnd's network directory. |
43 | 43 | ; Applications that are able to read this file, gain admin macaroon access. |
44 | | -; adminmacaroonpath=~/.lnd/data/chain/bitcoin/simnet/admin.macaroon |
| 44 | +; adminmacaroonpath=~/.dcrlnd/data/chain/decred/simnet/admin.macaroon |
45 | 45 |
|
46 | 46 | ; Path to write the read-only macaroon for lnd's RPC and REST services if it |
47 | 47 | ; doesn't exist. This can be set if one wishes to store the read-only macaroon |
48 | 48 | ; in a distinct location. The read only macaroon allows users which can read |
49 | 49 | ; the file to access RPCs which don't modify the state of the daemon. By |
50 | 50 | ; default, it is stored within lnd's network directory. |
51 | | -; readonlymacaroonpath=~/.lnd/data/chain/bitcoin/simnet/readonly.macaroon |
| 51 | +; readonlymacaroonpath=~/.dcrlnd/data/chain/decred/simnet/readonly.macaroon |
52 | 52 |
|
53 | 53 | ; Path to write the invoice macaroon for lnd's RPC and REST services if it |
54 | 54 | ; doesn't exist. This can be set if one wishes to store the invoice macaroon in |
55 | 55 | ; a distinct location. By default, it is stored within lnd's network directory. |
56 | 56 | ; The invoice macaroon allows users which can read the file to gain read and |
57 | 57 | ; write access to all invoice related RPCs. |
58 | | -; invoicemacaroonpath=~/.lnd/data/chain/bitcoin/simnet/invoice.macaroon |
| 58 | +; invoicemacaroonpath=~/.dcrlnd/data/chain/decred/simnet/invoice.macaroon |
59 | 59 |
|
60 | 60 |
|
61 | 61 | ; Specify the interfaces to listen on for p2p connections. One listen |
|
142 | 142 | ; color=#3399FF |
143 | 143 |
|
144 | 144 |
|
145 | | -[Bitcoin] |
| 145 | +[Decred] |
146 | 146 |
|
147 | | -; If the Bitcoin chain should be active. Atm, only a single chain can be |
| 147 | +; If the Decred chain should be active. Atm, only a single chain can be |
148 | 148 | ; active. |
149 | | -bitcoin.active=1 |
| 149 | +decred.active=1 |
150 | 150 |
|
151 | | -; Use Bitcoin's test network. |
152 | | -; bitcoin.testnet=1 |
| 151 | +; Use Decred's test network. |
| 152 | +; decred.testnet=1 |
153 | 153 | ; |
154 | | -; Use Bitcoin's simulation test network |
155 | | -bitcoin.simnet=1 |
| 154 | +; Use Decred's simulation test network |
| 155 | +decred.simnet=1 |
156 | 156 |
|
157 | | -; Use Bitcoin's regression test network |
158 | | -; bitcoin.regtest=false |
| 157 | +; Use Decred's regression test network |
| 158 | +; decred.regtest=false |
159 | 159 |
|
160 | | -; Use the btcd back-end |
161 | | -bitcoin.node=btcd |
162 | | - |
163 | | -; Use the bitcoind back-end |
164 | | -; bitcoin.node=bitcoind |
165 | | - |
166 | | -; Use the neutrino (light client) back-end |
167 | | -; bitcoin.node=neutrino |
| 160 | +; Use the dcrd back-end |
| 161 | +decred.node=dcrd |
168 | 162 |
|
169 | 163 | ; The default number of confirmations a channel must have before it's considered |
170 | 164 | ; open. We'll require any incoming channel requests to wait this many |
171 | 165 | ; confirmations before we consider the channel active. |
172 | | -; bitcoin.defaultchanconfs=3 |
| 166 | +; decred.defaultchanconfs=3 |
173 | 167 |
|
174 | 168 |
|
175 | | -[Btcd] |
| 169 | +[Dcrd] |
176 | 170 |
|
177 | | -; The host that your local btcd daemon is listening on. By default, this |
| 171 | +; The host that your local dcrd daemon is listening on. By default, this |
178 | 172 | ; setting is assumed to be localhost with the default port for the current |
179 | 173 | ; network. |
180 | | -; btcd.rpchost=localhost |
| 174 | +; dcrd.rpchost=localhost |
181 | 175 |
|
182 | | -; Username for RPC connections to btcd. By default, lnd will attempt to |
| 176 | +; Username for RPC connections to dcrd. By default, lnd will attempt to |
183 | 177 | ; automatically obtain the credentials, so this likely won't need to be set |
184 | 178 | ; (other than for simnet mode). |
185 | | -; btcd.rpcuser=kek |
| 179 | +; dcrd.rpcuser=kek |
186 | 180 |
|
187 | | -; Password for RPC connections to btcd. By default, lnd will attempt to |
| 181 | +; Password for RPC connections to dcrd. By default, lnd will attempt to |
188 | 182 | ; automatically obtain the credentials, so this likely won't need to be set |
189 | 183 | ; (other than for simnet mode). |
190 | | -; btcd.rpcpass=kek |
| 184 | +; dcrd.rpcpass=kek |
191 | 185 |
|
192 | 186 | ; File containing the daemon's certificate file. This only needs to be set if |
193 | 187 | ; the node isn't on the same host as lnd. |
194 | | -; btcd.rpccert=~/.btcd/rpc.cert |
| 188 | +; dcrd.rpccert=~/.dcrd/rpc.cert |
195 | 189 |
|
196 | 190 | ; The raw bytes of the daemon's PEM-encoded certificate chain which will be used |
197 | 191 | ; to authenticate the RPC connection. This only needs to be set if the btcd |
198 | 192 | ; node is on a remote host. |
199 | | -; btcd.rawrpccert= |
200 | | - |
201 | | - |
202 | | -[Bitcoind] |
203 | | - |
204 | | -; The host that your local bitcoind daemon is listening on. By default, this |
205 | | -; setting is assumed to be localhost with the default port for the current |
206 | | -; network. |
207 | | -; bitcoind.rpchost=localhost |
208 | | - |
209 | | -; Username for RPC connections to bitcoind. By default, lnd will attempt to |
210 | | -; automatically obtain the credentials, so this likely won't need to be set |
211 | | -; (other than for a remote bitcoind instance). |
212 | | -; bitcoind.rpcuser=kek |
213 | | - |
214 | | -; Password for RPC connections to bitcoind. By default, lnd will attempt to |
215 | | -; automatically obtain the credentials, so this likely won't need to be set |
216 | | -; (other than for a remote bitcoind instance). |
217 | | -; bitcoind.rpcpass=kek |
218 | | - |
219 | | -; ZMQ socket which sends rawblock and rawtx notifications from bitcoind. By |
220 | | -; default, lnd will attempt to automatically obtain this information, so this |
221 | | -; likely won't need to be set (other than for a remote bitcoind instance). |
222 | | -; bitcoind.zmqpubrawblock=tcp://127.0.0.1:28332 |
223 | | -; bitcoind.zmqpubrawtx=tcp://127.0.0.1:28333 |
224 | | - |
225 | | - |
226 | | -[neutrino] |
227 | | - |
228 | | -; Connect only to the specified peers at startup. This creates a persistent |
229 | | -; connection to a target peer. This is recommended as there aren't many |
230 | | -; neutrino compliant full nodes on the test network yet. |
231 | | -; neutrino.connect= |
232 | | - |
233 | | -; Add a peer to connect with at startup. |
234 | | -; neutrino.addpeer= |
235 | | - |
236 | | - |
237 | | -[Litecoin] |
238 | | - |
239 | | -; If the Litecoin chain should be active. Atm, only a single chain can be |
240 | | -; active. |
241 | | -; litecoin.active=1 |
242 | | - |
243 | | -; Use Litecoin's test network. |
244 | | -; litecoin.testnet=1 |
245 | | - |
246 | | -; Use the ltcd back-end |
247 | | -litecoin.node=ltcd |
248 | | - |
249 | | -; Use the litecoind back-end |
250 | | -; litecoin.node=litecoind |
251 | | - |
252 | | - |
253 | | -[Ltcd] |
254 | | - |
255 | | -; The host that your local ltcd daemon is listening on. By default, this |
256 | | -; setting is assumed to be localhost with the default port for the current |
257 | | -; network. |
258 | | -; ltcd.rpchost=localhost |
259 | | - |
260 | | -; Username for RPC connections to ltcd. By default, lnd will attempt to |
261 | | -; automatically obtain the credentials, so this likely won't need to be set |
262 | | -; (other than for simnet mode). |
263 | | -; ltcd.rpcuser=kek |
264 | | - |
265 | | -; Password for RPC connections to ltcd. By default, lnd will attempt to |
266 | | -; automatically obtain the credentials, so this likely won't need to be set |
267 | | -; (other than for simnet mode). |
268 | | -; ltcd.rpcpass=kek |
269 | | - |
270 | | -; File containing the daemon's certificate file. This only needs to be set if |
271 | | -; the node isn't on the same host as lnd. |
272 | | -; ltcd.rpccert=~/.ltcd/rpc.cert |
273 | | - |
274 | | -; The raw bytes of the daemon's PEM-encoded certificate chain which will be used |
275 | | -; to authenticate the RPC connection. This only needs to be set if the ltcd |
276 | | -; node is on a remote host. |
277 | | -; ltcd.rawrpccert= |
278 | | - |
279 | | - |
280 | | -[Litecoind] |
281 | | - |
282 | | -; The host that your local litecoind daemon is listening on. By default, this |
283 | | -; setting is assumed to be localhost with the default port for the current |
284 | | -; network. |
285 | | -; litecoind.rpchost=localhost |
286 | | - |
287 | | -; Username for RPC connections to litecoind. By default, lnd will attempt to |
288 | | -; automatically obtain the credentials, so this likely won't need to be set |
289 | | -; (other than for a remote litecoind instance). |
290 | | -; litecoind.rpcuser=kek |
291 | | - |
292 | | -; Password for RPC connections to litecoind. By default, lnd will attempt to |
293 | | -; automatically obtain the credentials, so this likely won't need to be set |
294 | | -; (other than for a remote litecoind instance). |
295 | | -; litecoind.rpcpass=kek |
296 | | - |
297 | | -; ZMQ socket which sends rawblock and rawtx notifications from litecoind. By |
298 | | -; default, lnd will attempt to automatically obtain this information, so this |
299 | | -; likely won't need to be set (other than for a remote litecoind instance). |
300 | | -; litecoind.zmqpubrawblock=tcp://127.0.0.1:28332 |
301 | | -; litecoind.zmqpubrawtx=tcp://127.0.0.1:28333 |
| 193 | +; dcrd.rawrpccert= |
302 | 194 |
|
303 | 195 |
|
304 | 196 | [autopilot] |
|
0 commit comments