drk.toml 692 B

123456789101112131415161718192021222324252627
  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. # Blockchain network to use
  9. network = "localnet"
  10. # Localnet blockchain network configuration
  11. [network_config."localnet"]
  12. # Path to blockchain cache database
  13. cache_path = "drk/cache"
  14. # Path to wallet database
  15. wallet_path = "drk/wallet.db"
  16. # Password for the wallet database
  17. wallet_pass = "testing"
  18. # darkfid JSON-RPC endpoint
  19. endpoint = "tcp://127.0.0.1:48345"
  20. # Path to interactive shell history file
  21. history_path = "drk/history.txt"