-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdaemon_config_example.json
132 lines (132 loc) · 2.99 KB
/
daemon_config_example.json
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"BTC" : {
"username" : "RPC_USERNAME",
"passwd" : "RPC_PASSWORD",
"host" : "localhost",
"port" : 8332,
"active" : 1,
"hashespersec" : 580000000000,
"algo" : "sha256",
"merged" : [],
"daemonuser" : "bitcoin",
"daemon" : "bitcoind",
"client" : "bitcoin-cli"
},
"UNO" : {
"username" : "RPC_USERNAME",
"passwd" : "RPC_PASSWORD",
"host" : "localhost",
"port" : 65535,
"active" : 1,
"hashespersec" : 580000000000,
"algo" : "sha256",
"merged" : [],
"daemonuser" : "unobtanium",
"daemon" : "unobtaniumd",
"client" : "unobtaniumd"
},
"BTG" : {
"username" : "RPC_USERNAME",
"passwd" : "RPC_PASSWORD",
"host" : "localhost",
"port" : 8348,
"active" : 1,
"hashespersec" : 6800000,
"algo" : "scrypt",
"merged" : [],
"daemonuser" : "bitgem",
"daemon" : "bitgemd",
"client" : "bitgemd"
},
"GDC" : {
"username" : "RPC_USERNAME",
"passwd" : "RPC_PASSWORD",
"host" : "localhost",
"port" : 12378,
"active" : 0,
"hashespersec" : 6800000,
"algo" : "scrypt",
"merged" : [],
"daemonuser" : "grandcoin",
"daemon" : "grandcoind",
"client" : "grandcoind"
},
"LTC" : {
"username" : "RPC_USERNAME",
"passwd" : "RPC_PASSWORD",
"host" : "localhost",
"port" : 9332,
"active" : 1,
"hashespersec" : 6800000,
"algo" : "scrypt",
"merged" : [],
"daemonuser" : "litecoin",
"daemon" : "litecoind",
"client" : "litecoind"
},
"DOGE" : {
"username" : "RPC_USERNAME",
"passwd" : "RPC_PASSWORD",
"host" : "localhost",
"port" : 22555,
"active" : 1,
"hashespersec" : 6800000,
"algo" : "scrypt",
"merged" : ["LTC"],
"daemonuser" : "dogecoin",
"daemon" : "dogecoind",
"client" : "dogecoind"
},
"NMC" : {
"username" : "RPC_USERNAME",
"passwd" : "RPC_PASSWORD",
"host" : "localhost",
"port" : 8336,
"active" : 0,
"hashespersec" : 580000000000,
"algo" : "sha256",
"merged" : ["BTC"],
"daemonuser" : "namecoin",
"daemon" : "namecoind",
"client" : "namecoind"
},
"FTC" : {
"username" : "RPC_USERNAME",
"passwd" : "RPC_PASSWORD",
"host" : "localhost",
"port" : 9337,
"active" : 1,
"hashespersec" : 6800000,
"algo" : "scrypt",,
"daemonuser" : "feathercoin",
"daemon" : "feathercoind",
"client" : "feathercoind"
"merged" : []
},
"ANC" : {
"username" : "RPC_USERNAME",
"passwd" : "RPC_PASSWORD",
"host" : "localhost",
"port" : 9376,
"active" : 0,
"hashespersec" : 6800000,
"algo" : "scrypt",
"merged" : [],
"daemonuser" : "anoncoin",
"daemon" : "anoncoind",
"client" : "anoncoind"
},
"NVC" : {
"username" : "RPC_USERNAME",
"passwd" : "RPC_PASSWORD",
"host" : "localhost",
"port" : 8344,
"active" : 1,
"hashespersec" : 6800000,
"algo" : "scrypt",
"merged" : [],
"daemonuser" : "novacoin",
"daemon" : "novacoind",
"client" : "novacoind"
}
}