drk.toml
1 ## drk configuration file 2 ## 3 ## Please make sure you go through all the settings so you can configure 4 ## your daemon properly. 5 ## 6 ## The default values are left commented. They can be overridden either by 7 ## uncommenting, or by using the command-line. 8 9 # Blockchain network to use 10 network = "localnet" 11 12 # Localnet blockchain network configuration 13 [network_config."localnet"] 14 # Path to blockchain cache database 15 cache_path = "drk/cache" 16 17 # Path to wallet database 18 wallet_path = "drk/wallet.db" 19 20 # Password for the wallet database 21 wallet_pass = "testing" 22 23 # darkfid JSON-RPC endpoint 24 endpoint = "tcp://127.0.0.1:48240" 25 26 # Path to interactive shell history file 27 history_path = "drk/history.txt"