2021-05-01 01:39:07 +02:00
|
|
|
# Goldshellminer-cli
|
|
|
|
|
|
|
|
### Introduction
|
|
|
|
|
|
|
|
It is a mining software to interact with goldshell home-mining device (HS1, HS1-Plus)
|
|
|
|
|
|
|
|
HS1: https://www.goldshell.com/hs1-handshake-miner-intro/
|
|
|
|
|
|
|
|
HS1-Plus: https://www.goldshell.com/hs1-handshake-miner-intro/
|
|
|
|
|
|
|
|
|
|
|
|
### Mining Guide
|
|
|
|
|
|
|
|
Tested on Linux, Windows and Mac OS.
|
|
|
|
|
|
|
|
#### 1.Install Node.js
|
|
|
|
```v10.15.3``` is recommended and tested
|
|
|
|
#### 2.Clone code
|
2021-05-01 01:40:27 +02:00
|
|
|
```$:https://github.com/manfromafar/goldshell-miner-lb1.git```
|
2021-05-01 01:39:07 +02:00
|
|
|
#### 3.Install dependency
|
|
|
|
```$:npm install```
|
|
|
|
#### 4.Config pool
|
|
|
|
Config `./config.json` to set your pool.
|
|
|
|
###### DXPOOL for example
|
|
|
|
``` json
|
|
|
|
{
|
|
|
|
"loglevel": -1,
|
|
|
|
"miners": [
|
|
|
|
{
|
|
|
|
"cryptoname": "hns",
|
|
|
|
"minername": ["Goldshell-HS1", "Goldshell-HS1-Plus"],
|
|
|
|
"pool": {
|
|
|
|
"host": "hns.ss.dxpool.com",
|
2021-05-01 01:40:27 +02:00
|
|
|
"port": 3008,
|
|
|
|
"user": "user.name",
|
|
|
|
"pass": "x"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cryptoname": "lbc",
|
|
|
|
"minername": ["Goldshell-LB1"],
|
|
|
|
"pool": {
|
|
|
|
"host": "lbc.viabtc.com",
|
|
|
|
"port": 3002,
|
|
|
|
"user": "user.name",
|
2021-05-01 01:39:07 +02:00
|
|
|
"pass": "x"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2021-05-01 01:40:27 +02:00
|
|
|
|
2021-05-01 01:39:07 +02:00
|
|
|
```
|
|
|
|
#### 5.Start Mining
|
|
|
|
```$:npm run dashboard ```
|
|
|
|
|
|
|
|
#### 6.Stop Mining
|
|
|
|
(Ctrl+C, Q, or ESC to stop the dashboard miner)
|