drk_config.toml 1.1 KB

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