defaults.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // Copyright 2016 The go-ethereum Authors
  2. // This file is part of the go-ethereum library.
  3. //
  4. // The go-ethereum library is free software: you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation, either version 3 of the License, or
  7. // (at your option) any later version.
  8. //
  9. // The go-ethereum library is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. // GNU Lesser General Public License for more details.
  13. //
  14. // You should have received a copy of the GNU Lesser General Public License
  15. // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
  16. package common
  17. import (
  18. "path/filepath"
  19. "runtime"
  20. )
  21. const (
  22. DefaultIPCSocket = "geth.ipc" // Default (relative) name of the IPC RPC socket
  23. DefaultHTTPHost = "localhost" // Default host interface for the HTTP RPC server
  24. DefaultHTTPPort = 8545 // Default TCP port for the HTTP RPC server
  25. DefaultWSHost = "localhost" // Default host interface for the websocket RPC server
  26. DefaultWSPort = 8546 // Default TCP port for the websocket RPC server
  27. )
  28. // DefaultDataDir is the default data directory to use for the databases and other
  29. // persistence requirements.
  30. func DefaultDataDir() string {
  31. // Try to place the data folder in the user's home dir
  32. home := HomeDir()
  33. if home != "" {
  34. if runtime.GOOS == "darwin" {
  35. return filepath.Join(home, "Library", "Ethereum")
  36. } else if runtime.GOOS == "windows" {
  37. return filepath.Join(home, "AppData", "Roaming", "Ethereum")
  38. } else {
  39. return filepath.Join(home, ".ethereum")
  40. }
  41. }
  42. // As we cannot guess a stable location, return empty and handle later
  43. return ""
  44. }