Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2021
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. ### MultiBit configuration options
  2.  
  3. All these options are set in the main control file `multibit.properties`. MultiBit looks in a few places for this file in the following order:
  4.  
  5. 1. Current working directory when launched. This is for backwards compatibility and for running from a USB drive.
  6.  
  7. 2. (Mac OS X only) Four directory levels up. This is for running from a USB drive, but outside the OSX `.app` directory.
  8.  
  9. 3. The operating system's standard application data directory:
  10.  
  11. #### Windows
  12.  
  13. * `System.getenv("APPDATA")/MultiBit`
  14. * Example: `C:/Documents and Settings/Administrator/Application Data/MultiBit`
  15.  
  16. #### Mac OS X
  17.  
  18. * `System.getProperty("user.home")/Library/Application Support/MultiBit`
  19. * Example: `/Users/jim/Library/Application Support/MultiBit`
  20.  
  21. #### Linux
  22.  
  23. * `System.getProperty("user.home")/MultiBit`
  24. * Example: `/Users/jim/MultiBit`
  25.  
  26. Wherever this file is found, that directory is used as the application data directory for Multibit.
  27.  
  28.  
  29. #### Connect to specific peers
  30.  
  31. If you want to connect to specific peers set `peers=<comma separated list of peers to connect to>`
  32.  
  33. The list of peers can be specified using domain names (`www.myNode.com`) or IP addresses. Example:
  34.  
  35. ```
  36. peers=173.242.119.177, 176.9.42.247, 217.79.19.226, 98.216.173.54
  37. ```
  38.  
  39. (The older property `singleNodeConnection` is still honoured but is now deprecated. Use 'peers' instead).
  40.  
  41. Note: ONLY these peers will be used for connections.
  42.  
  43. #### Testnet
  44.  
  45. To use Testnet set `testOrProductionNetwork=test`.
  46.  
  47. To use Testnet3 (recommended) set `testOrProductionNetwork=testnet3`.
  48. peers=173.255.204.124,107.150.52.74,136.244.101.227,167.172.211.76:22557,2001:19f0:6001:229b:5400:2ff:feeb:1f9e,2607:fb90:ce2d:7847:48ba:3763:6173:435f,45.32.66.136,50.220.121.211:6003,52.204.182.74,64.227.97.247:22557,68.108.211.35,68.195.18.155,73.168.22.226,73.253.117.17,73.61.6.1,76.102.39.163,97.77.231.85:9004,216.108.236.43,35.224.144.175,98.11.225.192,23.239.31.246,64.227.46.205,144.91.77.126,47.186.87.162,159.65.98.117,doge.tripout.tech,core0-gb.dogecoin.gg,core1-gb.dogecoin.gg,dnf-1.gbf.re,dnf-1.gbf.re,dnf-2.gbf.re,dnf-2.gbf.re,dnf-3.gbf.re,dnf-3.gbf.re,dnf-4.gbf.re,dnf-4.gbf.re,dnf-alpha.gbf.re,dnf-beta.gbf.re,dnf-test.gbf.re,doge1-eu.langerhans.de,doge1-eu.langerhans.de,doge2-eu.langerhans.de,doge2-eu.langerhans.de,doge3-eu.langerhans.de,doge3-eu.langerhans.de,doge4-eu.langerhans.de,doge4-eu.langerhans.de,dogenode.11z.me:22556,eu1.5trubel.de,eu2.5trubel.de,superfastdoge.ddns.net
  49. ,us-1.wowsuchfast.com,us-2.wowsuchfast.co,[2804:14d:5c5e:464f:e921:ea69:2e11:2ad5]:22556
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement