Advertisement
Guest User

Untitled

a guest
Jan 28th, 2018
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. # This is an example config for setting up a validator.
  2. # see https://www.stellar.org/developers/stellar-core/learn/admin.html#validating
  3. # it is kept up to date based on https://github.com/stellar/docs/blob/master/validators.md
  4.  
  5. # run `stellar-core --genseed` to generate a public key and secret seed.
  6. # Let us know the public key so we can add you to the validator list.
  7. # set NODE_SEED below to the secret seed generated above.
  8. #NODE_SEED="S123456ABCDE" # remove this if you are non-validating
  9. NODE_IS_VALIDATOR=false
  10.  
  11. DATABASE="postgresql://dbname=Core-Live user=postgres password={password} host=127.0.0.1"
  12.  
  13. #FAILURE_SAFETY is minimum number of nodes that are allowed to fail before you no longer have quorum
  14. FAILURE_SAFETY=0
  15.  
  16. #CATCHUP_RECENT=60480
  17.  
  18. NETWORK_PASSPHRASE="Public Global Stellar Network ; September 2015"
  19.  
  20.  
  21. NODE_NAMES=[
  22. "GCGB2S2KGYARPVIA37HYZXVRM2YZUEXA6S33ZU5BUDC6THSB62LZSTYH sdf_watcher1",
  23. "GCM6QMP3DLRPTAZW2UZPCPX2LF3SXWXKPMP3GKFZBDSF3QZGV2G5QSTK sdf_watcher2",
  24. "GABMKJM6I25XI4K7U6XWMULOUQIQ27BCTMLS6BYYSOWKTBUXVRJSXHYQ sdf_watcher3",
  25. ]
  26.  
  27. KNOWN_PEERS=[
  28. "core-live-a.stellar.org:11625",
  29. "core-live-b.stellar.org:11625",
  30. "core-live-c.stellar.org:11625"
  31. ]
  32.  
  33. [QUORUM_SET]
  34. VALIDATORS=[
  35. "$sdf_watcher1", "$sdf_watcher2", "$sdf_watcher3"
  36. ]
  37.  
  38.  
  39. # Stellar.org history store
  40. [HISTORY.sdf1]
  41. get="curl -sf http://history.stellar.org/prd/core-live/core_live_001/{0} -o {1}"
  42.  
  43. [HISTORY.sdf2]
  44. get="curl -sf http://history.stellar.org/prd/core-live/core_live_002/{0} -o {1}"
  45.  
  46. [HISTORY.sdf3]
  47. get="curl -sf http://history.stellar.org/prd/core-live/core_live_003/{0} -o {1}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement