Advertisement
Guest User

Untitled

a guest
Apr 14th, 2017
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.13 KB | None | 0 0
  1. # Endpoint for P2P node to listen on
  2. p2p-endpoint = 0.0.0.0:2001
  3.  
  4. # Maxmimum number of incoming connections on P2P endpoint
  5. # p2p-max-connections =
  6.  
  7. # P2P nodes to connect to on startup (may specify multiple times)
  8. # seed-node =
  9.  
  10. seed-node = 149.56.108.203:2001 # @krnel (CA)
  11. seed-node = anyx.co:2001 # @anyx (CA)
  12. seed-node = gtg.steem.house:2001 # @gtg (PL)
  13. seed-node = seed.jesta.us:2001 # @jesta (US)
  14. seed-node = 212.117.213.186:2016 # @liondani (SWISS)
  15. seed-node = seed.riversteem.com:2001 # @riverhead (NL)
  16. seed-node = seed.steemd.com:34191 # @roadscape (US)
  17. seed-node = seed.steemnodes.com:2001 # @wackou (NL)
  18. seed-node = 192.99.4.226:2001
  19. seed-node = 45.55.217.111:2001
  20. seed-node = 104.236.82.250:2001
  21. seed-node = steem.clawmap.com:2001
  22. seed-node = seed.steemnodes.com:2001
  23. seed-node = seed.steemwitness.com:2001
  24.  
  25.  
  26. # Pairs of [BLOCK_NUM,BLOCK_ID] that should be enforced as checkpoints.
  27. # checkpoint =
  28.  
  29. # Location of the shared memory file. Defaults to data_dir/blockchain
  30. # shared-file-dir =
  31.  
  32. # Size of the shared memory file. Default: 32G
  33. shared-file-size = 32G
  34.  
  35. # Endpoint for websocket RPC to listen on
  36. # rpc-endpoint =
  37.  
  38. # Endpoint for TLS websocket RPC to listen on
  39. rpc-tls-endpoint = 127.0.0.1:8090
  40.  
  41. # Endpoint to forward write API calls to for a read node
  42. # read-forward-rpc =
  43.  
  44. # The TLS certificate file for this server
  45. # server-pem =
  46.  
  47. # Password for this certificate
  48. # server-pem-password =
  49.  
  50. # API user specification, may be specified multiple times
  51. # api-user =
  52.  
  53. # Set an API to be publicly available, may be specified multiple times
  54. public-api = database_api login_api
  55.  
  56. # Plugin(s) to enable, may be specified multiple times
  57. enable-plugin = witness
  58.  
  59. # Maximum age of head block when broadcasting tx via API
  60. max-block-age = 200
  61.  
  62. # Flush shared memory file to disk this many blocks
  63. flush = 100000
  64.  
  65. # Defines a range of accounts to track as a json pair ["from","to"] [from,to]
  66. # track-account-range =
  67.  
  68. # Ignore posting operations, only track transfers and account updates
  69. # filter-posting-ops =
  70.  
  71. # Track account statistics by grouping orders into buckets of equal size measured in seconds specified as a JSON array of numbers
  72. account-stats-bucket-size = [60,3600,21600,86400,604800,2592000]
  73.  
  74. # How far back in time to track history for each bucker size, measured in the number of buckets (default: 100)
  75. account-stats-history-per-bucket = 100
  76.  
  77. # Which accounts to track the statistics of. Empty list tracks all accounts.
  78. account-stats-tracked-accounts = []
  79.  
  80. # Track blockchain statistics by grouping orders into buckets of equal size measured in seconds specified as a JSON array of numbers
  81. chain-stats-bucket-size = [60,3600,21600,86400,604800,2592000]
  82.  
  83. # How far back in time to track history for each bucket size, measured in the number of buckets (default: 100)
  84. chain-stats-history-per-bucket = 100
  85.  
  86. # Database edits to apply on startup (may specify multiple times)
  87. # edit-script =
  88.  
  89. # RPC endpoint of a trusted validating node (required)
  90. # trusted-node =
  91.  
  92. # Set the maximum size of cached feed for an account
  93. follow-max-feed-size = 500
  94.  
  95. # Track market history by grouping orders into buckets of equal size measured in seconds specified as a JSON array of numbers
  96. market-history-bucket-size = [15,60,300,3600,86400]
  97.  
  98. # How far back in time to track history for each bucket size, measured in the number of buckets (default: 5760)
  99. market-history-buckets-per-size = 5760
  100.  
  101. # Defines a range of accounts to private messages to/from as a json pair ["from","to"] [from,to)
  102. # pm-account-range =
  103.  
  104. # Enable block production, even if the chain is stale.
  105. enable-stale-production = false
  106.  
  107. # Percent of witnesses (0-99) that must be participating in order to produce blocks
  108. required-participation = false
  109.  
  110. # name of witness controlled by this node (e.g. initwitness )
  111. witness = "neoxian"
  112.  
  113. # name of miner and its private key (e.g. ["account","WIF PRIVATE KEY"] )
  114. # miner =
  115.  
  116. # Number of threads to use for proof of work mining
  117. # mining-threads =
  118.  
  119. # WIF PRIVATE KEY to be used by one or more witnesses or miners
  120.  
  121. # Account creation fee to be voted on upon successful POW - Minimum fee is 100.000 STEEM (written as 100000)
  122. # miner-account-creation-fee =
  123.  
  124. # Maximum block size (in bytes) to be voted on upon successful POW - Max block size must be between 128 KB and 750 MB
  125. # miner-maximum-block-size =
  126.  
  127. # SBD interest rate to be vote on upon successful POW - Default interest rate is 10% (written as 1000)
  128. # miner-sbd-interest-rate =
  129.  
  130. # declare an appender named "stderr" that writes messages to the console
  131. [log.console_appender.stderr]
  132. stream=std_error
  133.  
  134. # declare an appender named "p2p" that writes messages to p2p.log
  135. [log.file_appender.p2p]
  136. filename=logs/p2p/p2p.log
  137. # filename can be absolute or relative to this config file
  138.  
  139. # route any messages logged to the default logger to the "stderr" logger we
  140. # declared above, if they are info level are higher
  141. [logger.default]
  142. level=warn
  143. appenders=stderr
  144.  
  145. # route messages sent to the "p2p" logger to the p2p appender declared above
  146. [logger.p2p]
  147. level=warn
  148. appenders=p2p
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement