-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.txt
59 lines (47 loc) · 2.5 KB
/
config.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
const config =
{
"address": "NQ25 7NKG 10XH YB41 1UCF F1RY 1FD9 EBT6 HAHG",
"name": "*",
"thread": 8,
"percent": 100,
"cpu": "auto",
"server": [
"ws://hk0.nimiq.skypool.org:4000",
"ws://hk1.nimiq.skypool.org:4000",
"ws://sh0.nimiq.skypool.org:4000",
]
}
module.exports = config;
/*
修改 config.txt 配置文件,点击 skypool-node-client 即可开始挖矿。
config.txt 配置说明:
* address: 钱包地址,挖矿收益会定期转账到该地址。
* name: 机器编号,用于网页查看每台机器的详细情况,设置为 * 自动设定名字。
* thread: 挖矿线程数,设置为 CPU 核数即所有核都挖矿,如果想在挖矿的同时使用电脑,建议设置为 CPU 核数减 1。默认为 0,表示 CPU 核数减 1。
* percent: CPU 输出百分比,100 即为 100% 全力挖矿,范围 50 到 100。
* cpu: CPU 支持的指令集架构,分为 "extreme"(avx512f) | "fast"(avx2) | "normal"(avx) | "compat" | "auto"(自动检测)
* server: 天池节点地址,请选择以下节点。如设置多个节点则会在断线的时候按顺序切换。
可选 server 节点列表:
香港-0: ws://hk0.nimiq.skypool.org:4000
香港-1: ws://hk1.nimiq.skypool.org:4000
上海-1: ws://sh1.nimiq.skypool.org:4000
欧洲-1: ws://eu1.nimiq.skypool.org:4000
美国-1: ws://us1.nimiq.skypool.org:4000
*/
/*
Modify config.txt file, run skypool-node-client to start mining.
In Linux and MacOS, use `./skypool-node-client` in terminal to run mining.
config.txt description:
* address: wallet address, mining reward will send to this address automatically.
* name: mining machine name, used for skypool web page to see details for each machine, setting to * is auto setting name.
* thread: number of mining CPU threads. If set to the number of your threads, it means fully mining. If you want to use the computer while mining, it is recommended to set the number of CPU threads minus 1. Default is 0, 0 means CPU threads minus 1.
* percent: percentage of CPU usage, 100 is 100% full mining, ranging from 50 to 100.
* cpu: CPU Instruction Set Architecture (ISA), "extreme"(avx512f) | "fast"(avx2) | "normal"(avx) | "compat" | "auto"(auto detected)
* server: node address of Skypool mining servers as follows. Multi node servers will be auto selected when disconnect.
Server List:
Hongkong-0: ws://hk0.nimiq.skypool.org:4000
Hongkong-1: ws://hk1.nimiq.skypool.org:4000
Shanghai-1: ws://sh1.nimiq.skypool.org:4000
Europe-1: ws://eu1.nimiq.skypool.org:4000
USA-1: ws://us1.nimiq.skypool.org:4000
*/