dnetview_config.toml 663 B

12345678910111213141516171819202122232425262728293031
  1. ## map configuration file
  2. ##
  3. ## Please make sure you go through all the settings so you can configure
  4. ## map properly.
  5. [[nodes]]
  6. name = "Node 1"
  7. rpc_url = "tcp://127.0.0.1:8000"
  8. node_type = "NORMAL"
  9. [[nodes]]
  10. name = "Node 2"
  11. rpc_url = "tcp://127.0.0.1:7777"
  12. node_type = "NORMAL"
  13. [[nodes]]
  14. name = "Node 3"
  15. rpc_url = "tcp://127.0.0.1:1234"
  16. node_type = "NORMAL"
  17. # Darkfid node can run both sync and consensus p2p networks,
  18. # so we need to create a record for each network.
  19. #[[nodes]]
  20. #name = "darkfid-sync"
  21. #rpc_url = "tcp://127.0.0.1:8340"
  22. #node_type = "NORMAL"
  23. #[[nodes]]
  24. #name = "darkfid-consensus"
  25. #rpc_url = "tcp://127.0.0.1:8340"
  26. #node_type = "CONSENSUS"