s-nomp/pool_configs/darkcoin_example.json

44 lines
1.4 KiB
JSON
Raw Normal View History

2014-01-13 17:32:54 -08:00
{
2014-02-27 15:59:49 -08:00
"disabled": true,
"coin": "darkcoin",
"pool": {
"address": "XjkzAVe3zywGhDFSbJtqUN6xeKP37PSNSh",
"stratumPort": 3336,
"difficulty": 0.005,
"blockRefreshInterval": 1000
},
"daemons": [
{
"host": "localhost",
2014-02-27 15:59:49 -08:00
"port": 15342,
"user": "darkcoinrpc1",
"password": "drkpass"
}
],
"varDiff": {
2014-02-27 15:59:49 -08:00
"enabled": false,
"minDifficulty": 1,
"maxDifficulty": 1000,
"targetTime": 30,
"retargetTime": 120,
"variancePercent": 20
},
"p2p": {
2014-02-27 15:59:49 -08:00
"enabled": false,
"host": "localhost",
"port": 19333,
/* Found in src as the PROTOCOL_VERSION variable, for example:
https://github.com/litecoin-project/litecoin/blob/85f303d883ffff35238eaea5174b780c950c0ae4/src/version.h#L28
*/
"protocolVersion": 70002,
2014-02-27 15:59:49 -08:00
/* Magic value is different for main/testnet and for each coins. It is found in the daemon
source code as the pchMessageStart variable. For example, litecoin mainnet:
http://github.com/litecoin-project/litecoin/blob/85f303d883ffff35238eaea5174b780c950c0ae4/src/main.cpp#L3059
And for litecoin testnet:
http://github.com/litecoin-project/litecoin/blob/85f303d883ffff35238eaea5174b780c950c0ae4/src/main.cpp#L2722-L2725
*/
"magic": "fcc1b7dc"
2014-01-13 17:32:54 -08:00
}
2014-02-20 15:13:50 -08:00
}