mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-06 21:34:00 -05:00
28 lines
692 B
TOML
28 lines
692 B
TOML
## drk configuration file
|
|
##
|
|
## Please make sure you go through all the settings so you can configure
|
|
## your daemon properly.
|
|
##
|
|
## The default values are left commented. They can be overridden either by
|
|
## uncommenting, or by using the command-line.
|
|
|
|
# Blockchain network to use
|
|
network = "localnet"
|
|
|
|
# Localnet blockchain network configuration
|
|
[network_config."localnet"]
|
|
# Path to blockchain cache database
|
|
cache_path = "drk/cache"
|
|
|
|
# Path to wallet database
|
|
wallet_path = "drk/wallet.db"
|
|
|
|
# Password for the wallet database
|
|
wallet_pass = "testing"
|
|
|
|
# darkfid JSON-RPC endpoint
|
|
endpoint = "tcp://127.0.0.1:48345"
|
|
|
|
# Path to interactive shell history file
|
|
history_path = "drk/history.txt"
|