Skip to content

Commit

Permalink
Merge pull request #331 from ArqTras/master
Browse files Browse the repository at this point in the history
Cn variant
  • Loading branch information
dvandal committed Aug 17, 2018
2 parents 939021c + c755c3c commit 5cd33d1
Show file tree
Hide file tree
Showing 3 changed files with 193 additions and 3 deletions.
4 changes: 2 additions & 2 deletions config_examples/dero.json
Expand Up @@ -2,10 +2,10 @@
"poolHost": "your.pool.host",

"coin": "dero",
"symbol": "DERO,
"symbol": "DERO",
"coinUnits": 1000000000000,
"coinDecimalPlaces": 4,
"coinDifficultyTarget": 120,
"coinDifficultyTarget": 12,

"daemonType": "default",
"cnAlgorithm": "cryptonight",
Expand Down
2 changes: 1 addition & 1 deletion config_examples/electroneum.json
Expand Up @@ -9,7 +9,7 @@

"daemonType": "default",
"cnAlgorithm": "cryptonight",
"cnVariant": 1,
"cnVariant": 0,
"cnBlobType": 0,

"logging": {
Expand Down
190 changes: 190 additions & 0 deletions config_examples/newton.json
@@ -0,0 +1,190 @@
{
"coin": "Newton",
"symbol": "NCP",
"coinUnits": 100000000,
"coinDifficultyTarget": 120,

"logging": {
"files": {
"level": "info",
"directory": "logs",
"flushInterval": 5
},
"console": {
"level": "info",
"colors": true
}
},

"poolServer": {
"enabled": true,
"clusterForks": "auto",
"poolAddress": "** Your pool wallet address **" uhXd9FrWpYidBFMuaHBkECaRnjRsKf5g7Ukr2mcCD6",
"blockRefreshInterval": 1000,
"minerTimeout": 900,
"ports": [
{
"port": 3333,
"difficulty": 5000,
"desc": "Low end hardware"
},
{
"port": 4444,
"difficulty": 15000,
"desc": "Mid range hardware"
},
{
"port": 5555,
"difficulty": 25000,
"desc": "High end hardware"
},
{
"port": 7777,
"difficulty": 500000,
"desc": "Cloud-mining / NiceHash"
},
{
"port": 8888,
"difficulty": 25000,
"desc": "Hidden port",
"hidden": true
},
{
"port": 9999,
"difficulty": 20000,
"desc": "SSL connection",
"ssl": true
}
],
"varDiff": {
"minDiff": 100,
"maxDiff": 200000,
"targetTime": 100,
"retargetTime": 30,
"variancePercent": 30,
"maxJump": 100
},
"paymentId": {
"addressSeparator": "+"
},
"fixedDiff": {
"enabled": true,
"addressSeparator": "."
"shareTrust": {
"enabled": true,
"min": 10,
"stepDown": 3,
"threshold": 10,
"penalty": 30
},
"banning": {
"enabled": true,
"time": 600,
"invalidPercent": 25,
"checkThreshold": 30
}
},
"payments": {
"enabled": true,
"interval": 600,
"maxAddresses": 50,
"mixin": 1,
"transferFee": 1000000,
"minPayment": 100000000000,
"maxTransactionAmount": 50000000000000,
"denomination": 10000000000
},

"blockUnlocker": {
"enabled": true,
"interval": 30,
"depth": 60,
"poolFee": 2,
"devDonation": 0.0,
"coreDevDonation": 0.0,
"extraFeaturesDevDonation":0.0
},

"api": {
"enabled": true,
"hashrateWindow": 600,
"updateInterval": 5,
"port": 8117,
"blocks": 30,
"payments": 30,
"password": "your_password"
},

"daemon": {
"host": "127.0.0.1",
"port": 21236
},

"wallet": {
"host": "127.0.0.1",
"port": 22236
},

"redis": {
"host": "127.0.0.1",
"port": 6379,
"db": 0
},

"monitoring": {
"daemon": {
"checkInterval": 60,
"rpcMethod": "getblockcount"
},
"wallet": {
"checkInterval": 60,
"rpcMethod": "getbalance"
}
},

"charts": {
"pool": {
"hashrate": {
"enabled": true,
"updateInterval": 60,
"stepInterval": 1800,
"maximumPeriod": 86400
},
"workers": {
"enabled": true,
"updateInterval": 60,
"stepInterval": 1800,
"maximumPeriod": 86400
},
"difficulty": {
"enabled": true,
"updateInterval": 1800,
"stepInterval": 10800,
"maximumPeriod": 604800
},
"price": {
"enabled": true,
"updateInterval": 1800,
"stepInterval": 10800,
"maximumPeriod": 604800
},
"profit": {
"enabled": true,
"updateInterval": 1800,
"stepInterval": 10800,
"maximumPeriod": 604800
}
},
"user": {
"hashrate": {
"enabled": true,
"updateInterval": 180,
"stepInterval": 1800,
"maximumPeriod": 86400
},
"payments": {
"enabled": true
}
}
}
}

0 comments on commit 5cd33d1

Please sign in to comment.