buzzkillb

denarius settings.json ciquidus explorer

Feb 24th, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.29 KB | None | 0 0
  1. /*
  2. This file must be valid JSON. But comments are allowed
  3. [D] Denarius settings for ciquidus explorer -> https://github.com/suprnurd/ciquidus/
  4. how to bind port 80 https://eladnava.com/binding-nodejs-port-80-using-nginx/
  5. easy setup guide https://www.reddit.com/r/BiblePay/comments/7elm7r/iquidus_block_explorer_guide/
  6. # sample denarius.conf
  7. rpcuser=changeusername
  8. rpcpassword=changepassword
  9. server=1
  10. listen=1
  11. daemon=1
  12. txindex=1
  13. rpcport=32369
  14. rpcallowip=127.0.0.1
  15. #
  16. Please edit settings.json, not settings.json.template
  17. */
  18. {
  19. // name your instance!
  20. "title": "Denarius Block Explorer",
  21.  
  22. "address": "https://your.domain",
  23.  
  24. // coin name
  25. "coin": "Denarius",
  26.  
  27. // coin symbol
  28. "symbol": "D",
  29.  
  30. // logo
  31. "logo": "/images/denarius-128x128.png",
  32.  
  33. // favicon
  34. "favicon": "public/favicon.ico",
  35.  
  36. // Uses bootswatch themes (http://bootswatch.com/)
  37. // Valid options:
  38. // Cerulean, Cosmo, Cyborg, Darkly, Flatly, Journal, Lumen, Paper,
  39. // Readable, Sandstone, Simplex, Slate, Spacelab, Superhero, United, Yeti
  40. // theme (see /public/themes for available themes)
  41. "theme": "Cyborg",
  42.  
  43. // port to listen for requests on.
  44. "port" : 3001,
  45.  
  46. // database settings (MongoDB)
  47. "dbsettings": {
  48. "user": "3changeusername",
  49. "password": "3changepassword",
  50. "database": "explorerdb",
  51. "address": "localhost",
  52. "port": 27017
  53. },
  54.  
  55. //update script settings
  56. "update_timeout": 10,
  57. "check_timeout": 250,
  58.  
  59. // wallet settings
  60. "wallet": {
  61. "host": "localhost",
  62. "port": 32369,
  63. "user": "changeusername",
  64. "pass": "changepass"
  65. },
  66.  
  67. // confirmations
  68. "confirmations": 10,
  69.  
  70. // language settings
  71. "locale": "locale/en.json",
  72.  
  73. // menu settings
  74. "display": {
  75. "api": true,
  76. "markets": true,
  77. "richlist": true,
  78. "twitter": true,
  79. "facebook": false,
  80. "googleplus": false,
  81. "bitcointalk": true,
  82. "website": true,
  83. "slack": false,
  84. "github": true,
  85. "search": true,
  86. "movement": true,
  87. "network": true
  88. },
  89.  
  90. // index page (valid options for difficulty are POW, POS or Hybrid)
  91. "index": {
  92. "show_hashrate": true,
  93. "difficulty": "Hybrid",
  94. "last_txs": 100
  95. },
  96.  
  97. // ensure links on API page are valid
  98. "api": {
  99. "blockindex": 1337,
  100. "blockhash": "000000000661c86bf89e652eb142093bd9123006f3085595dee183bfe1c24570",
  101. "txhash": "000000000661c86bf89e652eb142093bd9123006f3085595dee183bfe1c24570",
  102. "address": "DABQj7yoQuvfxVVWMf2mqWhoHLDMUqUJsc"
  103. },
  104.  
  105. // market settings
  106. //supported markets: bittrex, poloniex, yobit, empoex, bleutrade, cryptopia, ccex, coinexchange
  107. //default market is loaded by default and determines last price in header
  108. "markets": {
  109. "coin": "D",
  110. "exchange": "BTC",
  111. "enabled": ["coinexchange"],
  112. "cryptopia_id": "5265",
  113. "ccex_key" : "Get-Your-Own-Key",
  114. "coinexchange_id": "371",
  115. "default": "coinexchange"
  116. },
  117.  
  118. // richlist/top100 settings
  119. "richlist": {
  120. "distribution": true,
  121. "received": true,
  122. "balance": true
  123. },
  124. // movement page settings
  125. // min amount: show transactions greater than this value
  126. // low flag: greater than this value flagged yellow
  127. // high flag: greater than this value flagged red
  128. "movement": {
  129. "min_amount": 100,
  130. "low_flag": 1000,
  131. "high_flag": 5000
  132. },
  133.  
  134. // twitter, facebook, googleplus, bitcointalk, github, slack, website
  135. "twitter": "denariuscoin",
  136. "facebook": "yourfacebookpage",
  137. "googleplus": "yourgooglepluspage",
  138. "bitcointalk": "1967207",
  139. "github": "carsenk/denarius",
  140. "slack": "yourfullslackinviteurl",
  141. "website": "https://denarius.io/",
  142.  
  143. //genesis
  144. "genesis_tx": "c6d8e8f56c25cac33567e571a3497bfc97f715140fcfe16d971333b38e4ee0f2",
  145. "genesis_block": "00000d5dbbda01621cfc16bbc1f9bf3264d641a5dbf0de89fd0182c2c4828fcd",
  146.  
  147. //heavy (enable/disable additional heavy features)
  148. "heavy": false,
  149.  
  150. //amount of txs to index per address (stores latest n txs)
  151. "txcount": 100,
  152.  
  153. //show total sent & received on address page (set false if PoS)
  154. "show_sent_received": true,
  155.  
  156. // how to calculate current coin supply
  157. // COINBASE : total sent from coinbase (PoW)
  158. // GETINFO : retreive from getinfo api call (PoS)
  159. // HEAVY: retreive from heavys getsupply api call
  160. // BALANCES : total of all address balances
  161. // TXOUTSET : retreive from gettxoutsetinfo api call
  162. "supply": "GETINFO",
  163.  
  164. // how to acquire network hashrate
  165. // getnetworkhashps: uses getnetworkhashps api call, returns in GH/s
  166. // netmhashps: uses getmininginfo.netmhashpsm returns in MH/s
  167. "nethash": "netmhashps",
  168.  
  169. // nethash unitd: sets nethash API return units
  170. // valid options: "P" (PH/s), "T" (TH/s), "G" (GH/s), "M" (MH/s), "K" (KH/s)
  171. "nethash_units": "G",
  172.  
  173. // Address labels
  174. // example : "CGTta3M4t3yXu8uRgkKvaWd2d8DQvDPnpL": {"label": "This is a burn address", "type":"danger", "url":"http://example.com"}
  175. // label (required) = test to display
  176. // type (optional) = class of label, valid types: default, primary, warning, danger, success
  177. // url (optional) = url to link to for more information
  178. "labels": {
  179. // "CLkWg5YSLod772uLzsFRxHgHiWVGAJSezm": {"label": "Donation Address", "type":"primary", "url":"http://example.com"},
  180. // "CaxX1HVWzbQ516w61XbtHR63vNmp2mvLMZ": {"label": "Max Lee War Chest"}
  181. }
  182. }
Add Comment
Please, Sign In to add comment