faucetd.toml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. ## faucetd 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. # Chain to use (testnet, mainnet)
  9. chain = "testnet"
  10. # Path to the wallet database
  11. wallet_path = "faucetd/wallet.db"
  12. # Password for the wallet database
  13. wallet_pass = "changeme"
  14. # Path to the blockchain database directory
  15. database = "faucetd/blockchain"
  16. # JSON-RPC listen URL
  17. rpc_listen = "tcp://127.0.0.1:8440"
  18. # P2P accept addresses for the syncing protocol
  19. sync_p2p_accept = ["tcp://127.0.0.1:8442"]
  20. # P2P external addresses for the syncing protocol
  21. sync_p2p_external = ["tcp://127.0.0.1:8442"]
  22. # Connection slots for the syncing protocol
  23. #sync_slots = 8
  24. # Seed nodes to connect to for the syncing protocol
  25. #sync_p2p_seed = []
  26. # Peers to connect to for the syncing protocol
  27. sync_p2p_peer = ["tcp://127.0.0.1:8342"]
  28. # Prefered transports of outbound connections for the syncing protocol
  29. sync_p2p_transports = ["tls", "tcp"]
  30. # Enable localnet hosts
  31. localnet = true
  32. # Enable channel log
  33. channel_log = true
  34. # Airdrop timeout limit in seconds
  35. airdrop_timeout = 120
  36. # Airdrop amount limit
  37. airdrop_limit = "1000000"
  38. # Whitelisted faucet addresses
  39. faucet_pub = ["DqaZzCTipXeJw4kcc6ro1SJuzo3diaNjFiaAnKTGQEK1"]