Files
autominer/config.js.sample
2017-06-17 16:30:59 -04:00

28 lines
777 B
Plaintext

const os = require('os');
module.exports = {
platform: os.type() === 'Windows_NT' ? 'windows' : 'linux',
interface: process.env.TERM === 'xterm-256color' || process.env.TERM === 'screen-256color' ? 'blessed' : 'simple',
exchange: 'coinbase',
pool: 'nicehash',
miners: {
// Comment out to disable a miner
'ccminer-tpruvot': {
path: '../ccminer/ccminer'
},
'ccminer-sp-mod': {
path: '../ccminer-sp-mod/ccminer'
},
'ccminer-klaust': {
path: '../ccminer-klaust/ccminer'
},
'nheqminer': {
path: '../nheqminer/build/nheqminer'
}
},
benchmarkSeconds: 60,
coinbaseApiKey: 'xxx',
coinbaseApiSecret: 'xxx',
nicehashApiId: '1234',
nicehashApiKey: 'xxxx-xxxx-xxxx-xxxx-xxxx',
username: 'address.worker'
};