Advertisement
Guest User

steem config.ini

a guest
Jul 8th, 2017
410
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.10 KB | None | 0 0
  1. #####BEGIN CONFIG.INI#####
  2. # #Endpoint for P2P node to listen on
  3. # p2p-endpoint =
  4.  
  5. # Maxmimum number of incoming connections on P2P endpoint
  6. # p2p-max-connections =
  7.  
  8. # P2P nodes to connect to on startup (may specify multiple times)
  9. # seed-node =
  10. # current seed nodes https://status.steemnodes.com/ if below don't work
  11.  
  12. seed-node = seed.steem.network:2001
  13. seed-node = seed.riversteem.com:2001
  14. seed-node = 52.74.152.79:2001
  15. seed-node = steemd.pharesim.me:2001
  16. seed-node = seed.steem.network
  17. seed-node = seed.steemd.com:34191
  18. seed-node = seed.esteem.ws:2001
  19. seed-node = seed.bitcoiner.me:2001
  20. seed-node = seed.steemnodes.com:2001
  21. # Pairs of [BLOCK_NUM,BLOCK_ID] that should be enforced as checkpoints.
  22. # checkpoint =
  23.  
  24. # Endpoint for websocket RPC to listen on
  25. # rpc-endpoint =
  26. rpc-endpoint = 127.0.0.1:8090
  27.  
  28. # Endpoint for TLS websocket RPC to listen on
  29. # rpc-tls-endpoint =
  30.  
  31. # The TLS certificate file for this server
  32. # server-pem =
  33.  
  34. # Password for this certificate
  35. # server-pem-password =
  36.  
  37. # Block signing key to use for init witnesses, overrides genesis file
  38. # dbg-init-key =
  39.  
  40. # API user specification, may be specified multiple times
  41. # api-user =
  42.  
  43. # Set an API to be publicly available, may be specified multiple times
  44. public-api = database_api login_api
  45.  
  46. # Plugin(s) to enable, may be specified multiple times
  47. enable-plugin = witness account_history
  48.  
  49. # Defines a range of accounts to track as a json pair ["from","to"] [from,to)
  50. # track-account-range =
  51.  
  52. # RPC endpoint of a trusted validating node (required)
  53. # trusted-node =
  54.  
  55. # Track market history by grouping orders into buckets of equal size measured in seconds specified as a JSON array of numbers
  56. bucket-size = [15,60,300,3600,86400]
  57.  
  58. # How far back in time to track history for each bucket size, measured in the number of buckets (default: 5760)
  59. history-per-size = 5760
  60.  
  61. # Defines a range of accounts to private messages to/from as a json pair ["from","to"] [from,to)
  62. # pm-account-range =
  63.  
  64. # Enable block production, even if the chain is stale.
  65. enable-stale-production = false
  66.  
  67. # Percent of witnesses (0-99) that must be participating in order to produce blocks
  68. required-participation = false
  69.  
  70. # name of witness controlled by this node (e.g. initwitness )
  71. # witness =
  72. #any valid witness will work https://steemd.com/witnesses
  73. witness = "good-karma"
  74. #witness = "roelandp"
  75. #witness = "gtg"
  76.  
  77.  
  78.  
  79.  
  80. # name of miner and its private key (e.g. ["account","WIF PRIVATE KEY"] )
  81. # miner =
  82. #if you want to mine, more miners with multiple CPUs, low CPUS fewer miners or one
  83. miner = ["miner0","YourReallyLongOwnerKey-WIF"]
  84. miner = ["miner1","YourReallyLongOwnerKey-WIF"]
  85. miner = ["miner2","YourReallyLongOwnerKey-WIF"]
  86. miner = ["miner3","YourReallyLongOwnerKey-WIF"]
  87.  
  88. # Number of CPU threads to use for proof of work mining
  89. # mining-threads =
  90.  
  91. mining-threads = 2
  92.  
  93. # WIF PRIVATE KEY to be used by one or more witnesses or miners
  94. # private-key =
  95. # random key so you know what it looks like
  96. # private-key = 5JsXGvo6m4pf3os2bz9CeQpUDagS6eEYqYrKpoZ4GY2gmwswEH5R
  97.  
  98. # Account creation fee to be voted on upon successful POW - Minimum fee is 100.000 STEEM (written as 100000)
  99. # miner-account-creation-fee =
  100.  
  101. # Maximum block size (in bytes) to be voted on upon successful POW - Max block size must be between 128 KB and 750 MB
  102. # miner-maximum-block-size =
  103.  
  104. # SBD interest rate to be vote on upon successful POW - Default interest rate is 10% (written as 1000)
  105. # miner-sbd-interest-rate =
  106.  
  107. # declare an appender named "stderr" that writes messages to the console
  108. [log.console_appender.stderr]
  109. stream=std_error
  110.  
  111. # declare an appender named "p2p" that writes messages to p2p.log
  112. [log.file_appender.p2p]
  113. filename=logs/p2p/p2p.log
  114. # filename can be absolute or relative to this config file
  115.  
  116. # route any messages logged to the default logger to the "stderr" logger we
  117. # declared above, if they are info level are higher
  118. [logger.default]
  119. level=warn
  120. appenders=stderr
  121.  
  122. # route messages sent to the "p2p" logger to the p2p appender declared above
  123. [logger.p2p]
  124. level=warn
  125. appenders=p2p
  126.  
  127. #####END CONFIG.INI#####
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement