mirror of
https://github.com/encounter/autominer.git
synced 2026-03-30 10:57:41 -07:00
28 lines
777 B
Plaintext
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'
|
|
}; |