Advertisement
Guest User

config.ini

a guest
Oct 31st, 2018
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.17 KB | None | 0 0
  1. # Endpoint for P2P node to listen on
  2. # p2p-endpoint =
  3.  
  4. # P2P nodes to connect to on startup (may specify multiple times)
  5. # seed-node =
  6.  
  7. # JSON array of P2P nodes to connect to on startup
  8. # seed-nodes =
  9.  
  10. # Pairs of [BLOCK_NUM,BLOCK_ID] that should be enforced as checkpoints.
  11. # checkpoint =
  12.  
  13. # Endpoint for websocket RPC to listen on
  14. # rpc-endpoint =
  15.  
  16. # Endpoint for TLS websocket RPC to listen on
  17. # rpc-tls-endpoint =
  18.  
  19. # The TLS certificate file for this server
  20. # server-pem =
  21.  
  22. # Password for this certificate
  23. # server-pem-password =
  24.  
  25. # File to read Genesis State from
  26. # genesis-json =
  27.  
  28. # Block signing key to use for init witnesses, overrides genesis file
  29. # dbg-init-key =
  30.  
  31. # JSON file specifying API permissions
  32. # api-access =
  33.  
  34. # Space-separated list of plugins to activate
  35. # plugins =
  36.  
  37. # Number of IO threads, default to 0 for auto-configuration
  38. # io-threads =
  39.  
  40. # Whether allow API clients to subscribe to universal object creation and removal events
  41. # enable-subscribe-to-all =
  42.  
  43. # Whether to enable tracking of votes of standby witnesses and committee members. Set it to true to provide accurate data to API clients, set to false for slightly better performance.
  44. # enable-standby-votes-tracking =
  45.  
  46. # Enable block production, even if the chain is stale.
  47. enable-stale-production = false
  48.  
  49. # Percent of witnesses (0-99) that must be participating in order to produce blocks
  50. required-participation = false
  51.  
  52. # ID of witness controlled by this node (e.g. "1.6.5", quotes are required, may specify multiple times)
  53. # witness-id =
  54.  
  55. # Tuple of [PublicKey, WIF private key] (may specify multiple times)
  56. private-key = ["BTS6MRyAjQq8ud7hVNYcfnVPJqcVpscN5So8BhtHuGYqET5GDW5CV","5KQwrPbwdL6PhXujxW37FSSQZ1JiwsST4cqQzDeyXtP79zkvFD3"]
  57.  
  58. # Tuple of [PublicKey, WIF private key] (may specify multiple times)
  59. debug-private-key = ["BTS6MRyAjQq8ud7hVNYcfnVPJqcVpscN5So8BhtHuGYqET5GDW5CV","5KQwrPbwdL6PhXujxW37FSSQZ1JiwsST4cqQzDeyXtP79zkvFD3"]
  60.  
  61. # ==== account_history ====
  62. # Account ID to track history for (may specify multiple times)
  63. # track-account =
  64.  
  65. # Keep only those operations in memory that are related to account history tracking
  66. partial-operations = 1
  67.  
  68. # Maximum number of operations per account will be kept in memory
  69. max-ops-per-account = 100
  70.  
  71. # ==== elasticsearch ====
  72. # Elastic Search database node url(http://localhost:9200/)
  73. # elasticsearch-node-url =
  74.  
  75. # Number of bulk documents to index on replay(10000)
  76. # elasticsearch-bulk-replay =
  77.  
  78. # Number of bulk documents to index on a syncronied chain(100)
  79. # elasticsearch-bulk-sync =
  80.  
  81. # Use visitor to index additional data(slows down the replay(false))
  82. # elasticsearch-visitor =
  83.  
  84. # Pass basic auth to elasticsearch database('')
  85. # elasticsearch-basic-auth =
  86.  
  87. # Add a prefix to the index(bitshares-)
  88. # elasticsearch-index-prefix =
  89.  
  90. # Save operation as object(false)
  91. # elasticsearch-operation-object =
  92.  
  93. # ==== market_history ====
  94. # Track market history by grouping orders into buckets of equal size measured in seconds specified as a JSON array of numbers
  95. bucket-size = [60,300,900,1800,3600,14400,86400]
  96.  
  97. # How far back in time to track history for each bucket size, measured in the number of buckets (default: 1000)
  98. history-per-size = 1000
  99.  
  100. # Will only store this amount of matched orders for each market in order history for querying, or those meet the other option, which has more data (default: 1000)
  101. max-order-his-records-per-market = 1000
  102.  
  103. # Will only store matched orders in last X seconds for each market in order history for querying, or those meet the other option, which has more data (default: 259200 (3 days))
  104. max-order-his-seconds-per-market = 259200
  105.  
  106. # ==== delayed_node ====
  107. # RPC endpoint of a trusted validating node (required)
  108. # trusted-node =
  109.  
  110. # ==== snapshot ====
  111. # Block number after which to do a snapshot
  112. # snapshot-at-block =
  113.  
  114. # Block time (ISO format) after which to do a snapshot
  115. # snapshot-at-time =
  116.  
  117. # Pathname of JSON file where to store the snapshot
  118. # snapshot-to =
  119.  
  120. # ==== es_objects ====
  121. # Elasticsearch node url(http://localhost:9200/)
  122. # es-objects-elasticsearch-url =
  123.  
  124. # Basic auth username:password('')
  125. # es-objects-auth =
  126.  
  127. # Number of bulk documents to index on replay(10000)
  128. # es-objects-bulk-replay =
  129.  
  130. # Number of bulk documents to index on a synchronized chain(100)
  131. # es-objects-bulk-sync =
  132.  
  133. # Store proposal objects(true)
  134. # es-objects-proposals =
  135.  
  136. # Store account objects(true)
  137. # es-objects-accounts =
  138.  
  139. # Store asset objects(true)
  140. # es-objects-assets =
  141.  
  142. # Store balances objects(true)
  143. # es-objects-balances =
  144.  
  145. # Store limit order objects(true)
  146. # es-objects-limit-orders =
  147.  
  148. # Store feed data(true)
  149. # es-objects-asset-bitasset =
  150.  
  151. # Add a prefix to the index(objects-)
  152. # es-objects-index-prefix =
  153.  
  154. # Keep only current state of the objects(true)
  155. # es-objects-keep-only-current =
  156.  
  157. # ==== grouped_orders ====
  158. # Group orders by percentage increase on price. Specify a JSON array of numbers here, each number is a group, number 1 means 0.01%.
  159. tracked-groups = [10,100]
  160.  
  161.  
  162. # Logging configuration is loaded from logging.ini by default.
  163. # If logging.ini exists, logging configuration added in this file will be ignored.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement