drk_config.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 = "testnet"
  10. # Flag indicating whether you want some fun in your life
  11. fun = true
  12. # Localnet blockchain network configuration
  13. [network_config."localnet"]
  14. # Path to wallet database
  15. wallet_path = "~/.local/darkfi/drk/localnet/wallet.db"
  16. # Password for the wallet database
  17. wallet_pass = "changeme"
  18. # darkfid JSON-RPC endpoint
  19. endpoint = "tcp://127.0.0.1:8240"
  20. # Testnet blockchain network configuration
  21. [network_config."testnet"]
  22. # Path to wallet database
  23. wallet_path = "~/.local/darkfi/drk/testnet/wallet.db"
  24. # Password for the wallet database
  25. wallet_pass = "changeme"
  26. # darkfid JSON-RPC endpoint
  27. endpoint = "tcp://127.0.0.1:8340"
  28. # Mainnet blockchain network configuration
  29. [network_config."mainnet"]
  30. # Path to wallet database
  31. wallet_path = "~/.local/darkfi/drk/mainnet/wallet.db"
  32. # Password for the wallet database
  33. wallet_pass = "changeme"
  34. # darkfid JSON-RPC endpoint
  35. endpoint = "tcp://127.0.0.1:8440"