drk1.toml 694 B

1234567891011121314151617181920212223242526
  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 = "drk1/cache"
  14. # Path to wallet database
  15. wallet_path = "drk1/wallet.db"
  16. # Password for the wallet database
  17. wallet_pass = "testing"
  18. # darkfid JSON-RPC endpoint
  19. endpoint = "tcp://127.0.0.1:48445"
  20. # Path to interactive shell history file
  21. history_path = "drk1/history.txt"