This repository was archived by the owner on Feb 6, 2026. It is now read-only.
forked from AlejandroDeLaTorre/demand-open-source.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstartmining.html
More file actions
691 lines (602 loc) · 37.8 KB
/
Copy pathstartmining.html
File metadata and controls
691 lines (602 loc) · 37.8 KB
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title>How to Start Mining with Demand</title><style>
/* cspell:disable-file */
/* webkit printing magic: print all background colors */
html {
-webkit-print-color-adjust: exact;
}
* {
box-sizing: border-box;
-webkit-print-color-adjust: exact;
}
html,
body {
margin: 0;
padding: 0;
}
@media only screen {
body {
margin: 2em auto;
max-width: 900px;
color: rgb(55, 53, 47);
}
}
body {
line-height: 1.5;
white-space: pre-wrap;
}
a,
a.visited {
color: inherit;
text-decoration: underline;
}
.pdf-relative-link-path {
font-size: 80%;
color: #444;
}
h1,
h2,
h3 {
letter-spacing: -0.01em;
line-height: 1.2;
font-weight: 600;
margin-bottom: 0;
}
.page-title {
font-size: 2.5rem;
font-weight: 700;
margin-top: 0;
margin-bottom: 0.75em;
}
h1 {
font-size: 1.875rem;
margin-top: 1.875rem;
}
h2 {
font-size: 1.5rem;
margin-top: 1.5rem;
}
h3 {
font-size: 1.25rem;
margin-top: 1.25rem;
}
.source {
border: 1px solid #ddd;
border-radius: 3px;
padding: 1.5em;
word-break: break-all;
}
.callout {
border-radius: 3px;
padding: 1rem;
}
figure {
margin: 1.25em 0;
page-break-inside: avoid;
}
figcaption {
opacity: 0.5;
font-size: 85%;
margin-top: 0.5em;
}
mark {
background-color: transparent;
}
.indented {
padding-left: 1.5em;
}
hr {
background: transparent;
display: block;
width: 100%;
height: 1px;
visibility: visible;
border: none;
border-bottom: 1px solid rgba(55, 53, 47, 0.09);
}
img {
max-width: 100%;
}
@media only print {
img {
max-height: 100vh;
object-fit: contain;
}
}
@page {
margin: 1in;
}
.collection-content {
font-size: 0.875rem;
}
.column-list {
display: flex;
justify-content: space-between;
}
.column {
padding: 0 1em;
}
.column:first-child {
padding-left: 0;
}
.column:last-child {
padding-right: 0;
}
.table_of_contents-item {
display: block;
font-size: 0.875rem;
line-height: 1.3;
padding: 0.125rem;
}
.table_of_contents-indent-1 {
margin-left: 1.5rem;
}
.table_of_contents-indent-2 {
margin-left: 3rem;
}
.table_of_contents-indent-3 {
margin-left: 4.5rem;
}
.table_of_contents-link {
text-decoration: none;
opacity: 0.7;
border-bottom: 1px solid rgba(55, 53, 47, 0.18);
}
table,
th,
td {
border: 1px solid rgba(55, 53, 47, 0.09);
border-collapse: collapse;
}
table {
border-left: none;
border-right: none;
}
th,
td {
font-weight: normal;
padding: 0.25em 0.5em;
line-height: 1.5;
min-height: 1.5em;
text-align: left;
}
th {
color: rgba(55, 53, 47, 0.6);
}
ol,
ul {
margin: 0;
margin-block-start: 0.6em;
margin-block-end: 0.6em;
}
li > ol:first-child,
li > ul:first-child {
margin-block-start: 0.6em;
}
ul > li {
list-style: disc;
}
ul.to-do-list {
padding-inline-start: 0;
}
ul.to-do-list > li {
list-style: none;
}
.to-do-children-checked {
text-decoration: line-through;
opacity: 0.375;
}
ul.toggle > li {
list-style: none;
}
ul {
padding-inline-start: 1.7em;
}
ul > li {
padding-left: 0.1em;
}
ol {
padding-inline-start: 1.6em;
}
ol > li {
padding-left: 0.2em;
}
.mono ol {
padding-inline-start: 2em;
}
.mono ol > li {
text-indent: -0.4em;
}
.toggle {
padding-inline-start: 0em;
list-style-type: none;
}
/* Indent toggle children */
.toggle > li > details {
padding-left: 1.7em;
}
.toggle > li > details > summary {
margin-left: -1.1em;
}
.selected-value {
display: inline-block;
padding: 0 0.5em;
background: rgba(206, 205, 202, 0.5);
border-radius: 3px;
margin-right: 0.5em;
margin-top: 0.3em;
margin-bottom: 0.3em;
white-space: nowrap;
}
.collection-title {
display: inline-block;
margin-right: 1em;
}
.page-description {
margin-bottom: 2em;
}
.simple-table {
margin-top: 1em;
font-size: 0.875rem;
empty-cells: show;
}
.simple-table td {
height: 29px;
min-width: 120px;
}
.simple-table th {
height: 29px;
min-width: 120px;
}
.simple-table-header-color {
background: rgb(247, 246, 243);
color: black;
}
.simple-table-header {
font-weight: 500;
}
time {
opacity: 0.5;
}
.icon {
display: inline-block;
max-width: 1.2em;
max-height: 1.2em;
text-decoration: none;
vertical-align: text-bottom;
margin-right: 0.5em;
}
img.icon {
border-radius: 3px;
}
.user-icon {
width: 1.5em;
height: 1.5em;
border-radius: 100%;
margin-right: 0.5rem;
}
.user-icon-inner {
font-size: 0.8em;
}
.text-icon {
border: 1px solid #000;
text-align: center;
}
.page-cover-image {
display: block;
object-fit: cover;
width: 100%;
max-height: 30vh;
}
.page-header-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
.page-header-icon-with-cover {
margin-top: -0.72em;
margin-left: 0.07em;
}
.page-header-icon img {
border-radius: 3px;
}
.link-to-page {
margin: 1em 0;
padding: 0;
border: none;
font-weight: 500;
}
p > .user {
opacity: 0.5;
}
td > .user,
td > time {
white-space: nowrap;
}
input[type="checkbox"] {
transform: scale(1.5);
margin-right: 0.6em;
vertical-align: middle;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.image {
border: none;
margin: 1.5em 0;
padding: 0;
border-radius: 0;
text-align: center;
}
.code,
code {
background: rgba(135, 131, 120, 0.15);
border-radius: 3px;
padding: 0.2em 0.4em;
border-radius: 3px;
font-size: 85%;
tab-size: 2;
}
code {
color: #eb5757;
}
.code {
padding: 1.5em 1em;
}
.code-wrap {
white-space: pre-wrap;
word-break: break-all;
}
.code > code {
background: none;
padding: 0;
font-size: 100%;
color: inherit;
}
blockquote {
font-size: 1.25em;
margin: 1em 0;
padding-left: 1em;
border-left: 3px solid rgb(55, 53, 47);
}
.bookmark {
text-decoration: none;
max-height: 8em;
padding: 0;
display: flex;
width: 100%;
align-items: stretch;
}
.bookmark-title {
font-size: 0.85em;
overflow: hidden;
text-overflow: ellipsis;
height: 1.75em;
white-space: nowrap;
}
.bookmark-text {
display: flex;
flex-direction: column;
}
.bookmark-info {
flex: 4 1 180px;
padding: 12px 14px 14px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.bookmark-image {
width: 33%;
flex: 1 1 180px;
display: block;
position: relative;
object-fit: cover;
border-radius: 1px;
}
.bookmark-description {
color: rgba(55, 53, 47, 0.6);
font-size: 0.75em;
overflow: hidden;
max-height: 4.5em;
word-break: break-word;
}
.bookmark-href {
font-size: 0.75em;
margin-top: 0.25em;
}
.sans { font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol"; }
.code { font-family: "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace; }
.serif { font-family: Lyon-Text, Georgia, ui-serif, serif; }
.mono { font-family: iawriter-mono, Nitti, Menlo, Courier, monospace; }
.pdf .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK JP'; }
.pdf:lang(zh-CN) .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK SC'; }
.pdf:lang(zh-TW) .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK TC'; }
.pdf:lang(ko-KR) .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK KR'; }
.pdf .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK JP'; }
.pdf:lang(zh-CN) .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK SC'; }
.pdf:lang(zh-TW) .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK TC'; }
.pdf:lang(ko-KR) .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK KR'; }
.pdf .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK JP'; }
.pdf:lang(zh-CN) .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK SC'; }
.pdf:lang(zh-TW) .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK TC'; }
.pdf:lang(ko-KR) .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK KR'; }
.pdf .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK JP'; }
.pdf:lang(zh-CN) .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK SC'; }
.pdf:lang(zh-TW) .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK TC'; }
.pdf:lang(ko-KR) .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK KR'; }
.highlight-default {
color: rgba(50, 48, 44, 1);
}
.highlight-gray {
color: rgba(115, 114, 110, 1);
fill: rgba(115, 114, 110, 1);
}
.highlight-brown {
color: rgba(159, 107, 83, 1);
fill: rgba(159, 107, 83, 1);
}
.highlight-orange {
color: rgba(217, 115, 13, 1);
fill: rgba(217, 115, 13, 1);
}
.highlight-yellow {
color: rgba(203, 145, 47, 1);
fill: rgba(203, 145, 47, 1);
}
.highlight-teal {
color: rgba(68, 131, 97, 1);
fill: rgba(68, 131, 97, 1);
}
.highlight-blue {
color: rgba(51, 126, 169, 1);
fill: rgba(51, 126, 169, 1);
}
.highlight-purple {
color: rgba(144, 101, 176, 1);
fill: rgba(144, 101, 176, 1);
}
.highlight-pink {
color: rgba(193, 76, 138, 1);
fill: rgba(193, 76, 138, 1);
}
.highlight-red {
color: rgba(205, 60, 58, 1);
fill: rgba(205, 60, 58, 1);
}
.highlight-default_background {
color: rgba(50, 48, 44, 1);
}
.highlight-gray_background {
background: rgba(248, 248, 247, 1);
}
.highlight-brown_background {
background: rgba(244, 238, 238, 1);
}
.highlight-orange_background {
background: rgba(251, 236, 221, 1);
}
.highlight-yellow_background {
background: rgba(251, 243, 219, 1);
}
.highlight-teal_background {
background: rgba(237, 243, 236, 1);
}
.highlight-blue_background {
background: rgba(231, 243, 248, 1);
}
.highlight-purple_background {
background: rgba(248, 243, 252, 1);
}
.highlight-pink_background {
background: rgba(252, 241, 246, 1);
}
.highlight-red_background {
background: rgba(253, 235, 236, 1);
}
.block-color-default {
color: inherit;
fill: inherit;
}
.block-color-gray {
color: rgba(115, 114, 110, 1);
fill: rgba(115, 114, 110, 1);
}
.block-color-brown {
color: rgba(159, 107, 83, 1);
fill: rgba(159, 107, 83, 1);
}
.block-color-orange {
color: rgba(217, 115, 13, 1);
fill: rgba(217, 115, 13, 1);
}
.block-color-yellow {
color: rgba(203, 145, 47, 1);
fill: rgba(203, 145, 47, 1);
}
.block-color-teal {
color: rgba(68, 131, 97, 1);
fill: rgba(68, 131, 97, 1);
}
.block-color-blue {
color: rgba(51, 126, 169, 1);
fill: rgba(51, 126, 169, 1);
}
.block-color-purple {
color: rgba(144, 101, 176, 1);
fill: rgba(144, 101, 176, 1);
}
.block-color-pink {
color: rgba(193, 76, 138, 1);
fill: rgba(193, 76, 138, 1);
}
.block-color-red {
color: rgba(205, 60, 58, 1);
fill: rgba(205, 60, 58, 1);
}
.block-color-default_background {
color: inherit;
fill: inherit;
}
.block-color-gray_background {
background: rgba(248, 248, 247, 1);
}
.block-color-brown_background {
background: rgba(244, 238, 238, 1);
}
.block-color-orange_background {
background: rgba(251, 236, 221, 1);
}
.block-color-yellow_background {
background: rgba(251, 243, 219, 1);
}
.block-color-teal_background {
background: rgba(237, 243, 236, 1);
}
.block-color-blue_background {
background: rgba(231, 243, 248, 1);
}
.block-color-purple_background {
background: rgba(248, 243, 252, 1);
}
.block-color-pink_background {
background: rgba(252, 241, 246, 1);
}
.block-color-red_background {
background: rgba(253, 235, 236, 1);
}
.select-value-color-uiBlue { background-color: undefined; }
.select-value-color-pink { background-color: rgba(225, 136, 179, 0.27); }
.select-value-color-purple { background-color: rgba(168, 129, 197, 0.27); }
.select-value-color-green { background-color: rgba(123, 183, 129, 0.27); }
.select-value-color-gray { background-color: rgba(84, 72, 49, 0.15); }
.select-value-color-translucentGray { background-color: undefined; }
.select-value-color-orange { background-color: rgba(224, 124, 57, 0.27); }
.select-value-color-brown { background-color: rgba(210, 162, 141, 0.35); }
.select-value-color-red { background-color: rgba(244, 171, 159, 0.4); }
.select-value-color-yellow { background-color: rgba(236, 191, 66, 0.39); }
.select-value-color-blue { background-color: rgba(93, 165, 206, 0.27); }
.select-value-color-pageGlass { background-color: undefined; }
.select-value-color-washGlass { background-color: undefined; }
.checkbox {
display: inline-flex;
vertical-align: text-bottom;
width: 16;
height: 16;
background-size: 16px;
margin-left: 2px;
margin-right: 5px;
}
.checkbox-on {
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%2358A9D7%22%2F%3E%0A%3Cpath%20d%3D%22M6.71429%2012.2852L14%204.9995L12.7143%203.71436L6.71429%209.71378L3.28571%206.2831L2%207.57092L6.71429%2012.2852Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E");
}
.checkbox-off {
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20x%3D%220.75%22%20y%3D%220.75%22%20width%3D%2214.5%22%20height%3D%2214.5%22%20fill%3D%22white%22%20stroke%3D%22%2336352F%22%20stroke-width%3D%221.5%22%2F%3E%0A%3C%2Fsvg%3E");
}
</style></head><body><article id="19844f4a-23ef-80e8-a775-cc03c85cb575" class="page sans"><header><div class="page-header-icon undefined"></div><h1 class="page-title">How to Start Mining with Demand</h1><p class="page-description"></p></header><div class="page-body"><p id="1b244f4a-23ef-80b2-9fbe-faf8906eea69" class="">Welcome to the DMND Pool guide. DMND pool requires the use of a Translator Proxy Server (TPS). The TPS translates your miners messages from StratumV1 (SV1) to StratumV2 (SV2). More information on TPS and StratumV2 can be found in the FAQ below. This guide will walk you through creating an account and setting up the TPS to start mining with DMND. The process is simple, and we’ll guide you step by step.</p><h2 id="1ce44f4a-23ef-809b-b49f-d85e628e7a59" class=""><strong>Part 1: Create Your DMND Account</strong></h2><p id="1ce44f4a-23ef-800c-8103-fd028595a042" class="">To start, you’ll need a user account.</p><ul id="1ce44f4a-23ef-80e5-83a0-cdaaba030aec" class="bulleted-list"><li style="list-style-type:disc"><strong>Register Your Account</strong><ul id="1ce44f4a-23ef-8075-98bc-e62be6738186" class="bulleted-list"><li style="list-style-type:circle">Visit <mark class="highlight-red"><a href="https://dev-app.dmnd.work/home">https://dev-app.dmnd.work/home</a></mark></li></ul><ul id="1ce44f4a-23ef-806b-a871-fb16448b8803" class="bulleted-list"><li style="list-style-type:circle">Enter your email and password to sign up.</li></ul></li></ul><ul id="1ce44f4a-23ef-80e9-8ca1-f0dc00fae794" class="bulleted-list"><li style="list-style-type:disc"><strong>Enable Two-Factor Authentication (2FA)</strong><ul id="1ce44f4a-23ef-8013-a771-d19b374ae05b" class="bulleted-list"><li style="list-style-type:circle">After registering, activate 2FA for added security.</li></ul></li></ul><ul id="1ce44f4a-23ef-8082-8a3f-ddedefac5536" class="bulleted-list"><li style="list-style-type:disc"><strong>Verify Your Email</strong><ul id="1ce44f4a-23ef-801b-91a0-f2b65d9f273b" class="bulleted-list"><li style="list-style-type:circle">Check your inbox (and spam folder) for a verification code.</li></ul><ul id="1ce44f4a-23ef-8099-908a-e6f694c02f78" class="bulleted-list"><li style="list-style-type:circle">Use the code to confirm your email address.</li></ul></li></ul><ul id="1ce44f4a-23ef-802a-addb-c90154126a9c" class="bulleted-list"><li style="list-style-type:disc"><strong>Add Your Payout Address</strong><ul id="1ce44f4a-23ef-8016-bd85-e0b410880e44" class="bulleted-list"><li style="list-style-type:circle">Enter your payout address in the dashboard.</li></ul></li></ul><ul id="1ce44f4a-23ef-804f-838a-c6a078538d4a" class="bulleted-list"><li style="list-style-type:disc"><strong>Get Your Token</strong><ul id="1ce44f4a-23ef-8055-b3fc-c86211fe4531" class="bulleted-list"><li style="list-style-type:circle">Once complete, click "Connect" in the dashboard to see your unique token.</li></ul><ul id="1ce44f4a-23ef-801a-903c-ee4ae7262146" class="bulleted-list"><li style="list-style-type:circle">This token identifies you as a miner and will be used to configure the proxy. If you previously used the old token , simply replace it with this new one.</li></ul></li></ul><hr id="1ce44f4a-23ef-80a1-8285-d1208a307be0"/><h2 id="19844f4a-23ef-80ec-8d1d-de61036abe24" class=""><strong>Part 2: Setup the proxy</strong></h2><p id="1ce44f4a-23ef-8055-be32-dec9cb87955a" class="">Now that you have your account and token, let’s set up the proxy and start mining. The proxy client acts as a bridge between your miner and the pool. Think of it like this:</p><p id="19844f4a-23ef-80e5-a339-e04d4b43630d" class="">Your miner ———> ProxyClient ———> Pool. <div class="indented"><blockquote id="1ce44f4a-23ef-8096-ab45-c6b5aa54ed27" class=""><strong>Setup overview</strong><p id="1ce44f4a-23ef-8097-aa0a-e25ad2b43406" class="">✅ To mine without Job declaration → Set <code>TOKEN</code> and pool address, then start <code>proxyclient</code>.</p><p id="1ce44f4a-23ef-8003-9a0d-d1ed1dfeaa34" class="">✅ To mine with Job declaration → Run a patched Bitcoin node, set <code>TOKEN</code>, pool address and <code>TP_ADDRESS</code>, then start <code>proxyclient</code>.</p></blockquote></div></p><p id="1ce44f4a-23ef-8071-8d48-c4174209aacd" class="">Now, let’s go through the setup step by step.</p><h3 id="1ce44f4a-23ef-8075-b426-ef9afcabf805" class=""><strong>Step 1: Get </strong><code><strong>proxyclient</strong></code><strong> (demand-cli)</strong></h3><p id="19844f4a-23ef-8086-9b4a-f736eee264e0" class="">To get the proxy, you have two options:<div class="indented"><ul id="19844f4a-23ef-8053-bf19-c24e879416f6" class="toggle"><li><details open=""><summary><strong>Option 1: Download the binaries</strong></summary><ul id="19844f4a-23ef-80cf-8eca-ed4c2cc91283" class="bulleted-list"><li style="list-style-type:disc">Download binaries for your OS <a href="https://github.com/demand-open-source/demand-cli/releases">here</a>.</li></ul></details></li></ul><ul id="19844f4a-23ef-80ba-a279-fbc724b71a52" class="toggle"><li><details open=""><summary><strong>Option 2: Build it yourself</strong></summary><ul id="19844f4a-23ef-80d4-958a-e376cb887be8" class="bulleted-list"><li style="list-style-type:disc">Install <a href="https://www.rust-lang.org/tools/install">Rust</a>.</li></ul><ul id="19844f4a-23ef-8005-b627-d219fcd575ea" class="bulleted-list"><li style="list-style-type:disc">Clone the repo:<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js" integrity="sha512-7Z9J3l1+EYfeaPKcGXu3MS/7T+w19WtKQY/n+xzmw4hZhJ9tyYmcUS+4QqAlzhicE5LAfMQSF3iFTK9bQdTxXg==" crossorigin="anonymous" referrerPolicy="no-referrer"></script><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism.min.css" integrity="sha512-tN7Ec6zAFaVSG3TpNAKtk4DOHNpSwKHxxrsiw4GHKESGPs5njn/0sMCUMl2svV4wo4BK/rCP7juYz+zx+l6oeQ==" crossorigin="anonymous" referrerPolicy="no-referrer"/><pre id="19844f4a-23ef-809c-af5a-d392af171456" class="code"><code class="language-Bash">git clone https://github.com/demand-open-source/demand-cli.git</code></pre></li></ul><ul id="19844f4a-23ef-8082-b74f-d94fd223712f" class="bulleted-list"><li style="list-style-type:disc">Build the binary<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js" integrity="sha512-7Z9J3l1+EYfeaPKcGXu3MS/7T+w19WtKQY/n+xzmw4hZhJ9tyYmcUS+4QqAlzhicE5LAfMQSF3iFTK9bQdTxXg==" crossorigin="anonymous" referrerPolicy="no-referrer"></script><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism.min.css" integrity="sha512-tN7Ec6zAFaVSG3TpNAKtk4DOHNpSwKHxxrsiw4GHKESGPs5njn/0sMCUMl2svV4wo4BK/rCP7juYz+zx+l6oeQ==" crossorigin="anonymous" referrerPolicy="no-referrer"/><pre id="19844f4a-23ef-80f1-aaaf-dc7f5a0b10ea" class="code"><code class="language-Bash">cd demand-cli
cargo build --release</code></pre></li></ul></details></li></ul></div></p><h3 id="19844f4a-23ef-8090-b384-fef3dd69cf2a" class=""><strong>Step 2 (Optional): Set up Bitcoin Node as Template Provider</strong></h3><p id="19844f4a-23ef-80f8-a5b4-e9da16257879" class="">If you want to declare your own mining jobs, you’ll need to run a patched Bitcoin node (Sjors patched bitcoind), otherwise the pool will send you mining jobs. <div class="indented"><ul id="19844f4a-23ef-80f6-9d0c-c058818b2954" class="toggle"><li><details open=""><summary>Download the Patched Bitcoin Node</summary><ul id="19844f4a-23ef-8013-b070-e88866aa0025" class="bulleted-list"><li style="list-style-type:disc">Get it here: <a href="https://github.com/Sjors/bitcoin/releases/tag/sv2-tp-0.1.14">Bitcoin SV2 TP Release</a></li></ul><ul id="19844f4a-23ef-80a1-aa53-e2586b6fa224" class="bulleted-list"><li style="list-style-type:disc">Scroll down, click <mark class="highlight-gray"><strong>Assets</strong></mark>, and download the correct version for your system.</li></ul><ul id="19844f4a-23ef-80c0-9fdb-f6ecb82dc305" class="bulleted-list"><li style="list-style-type:disc">Follow the <a href="https://github.com/Sjors/bitcoin/tree/sv2/doc">this guide</a> to install</li></ul></details></li></ul><ul id="19844f4a-23ef-8066-9f77-d0bb926e369e" class="toggle"><li><details open=""><summary>Start the node in SV2 Mode</summary><p id="19844f4a-23ef-80df-8bc8-f0b5c9e2261c" class="">Run this command to start the Bitcoin node in <strong>SV2 mode</strong>:</p><script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js" integrity="sha512-7Z9J3l1+EYfeaPKcGXu3MS/7T+w19WtKQY/n+xzmw4hZhJ9tyYmcUS+4QqAlzhicE5LAfMQSF3iFTK9bQdTxXg==" crossorigin="anonymous" referrerPolicy="no-referrer"></script><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism.min.css" integrity="sha512-tN7Ec6zAFaVSG3TpNAKtk4DOHNpSwKHxxrsiw4GHKESGPs5njn/0sMCUMl2svV4wo4BK/rCP7juYz+zx+l6oeQ==" crossorigin="anonymous" referrerPolicy="no-referrer"/><pre id="19844f4a-23ef-8029-951e-efb47cc48309" class="code"><code class="language-Bash" style="white-space:pre-wrap;word-break:break-all">bitcoind -sv2 -sv2port=8442 -sv2bind=0.0.0.0 -sv2interval=10 -sv2feedelta=200000
</code></pre><h3 id="19844f4a-23ef-80d8-8f83-f5d95e80ea7e" class=""><strong>What do these options mean?</strong></h3><ul id="19844f4a-23ef-8092-b036-e97a4aa27050" class="bulleted-list"><li style="list-style-type:disc"><code>sv2port=8442</code> → The port where the node will accept mining requests.</li></ul><ul id="19844f4a-23ef-8065-a345-d1637d7a5516" class="bulleted-list"><li style="list-style-type:disc"><code>sv2bind=0.0.0.0</code> → Allows connections from any computer.</li></ul><ul id="19844f4a-23ef-8025-8bdc-ccb6d1bd583c" class="bulleted-list"><li style="list-style-type:disc"><code>sv2interval=10</code> → Sends a new mining template every 10 seconds if no better one appears.</li></ul><ul id="19844f4a-23ef-800f-a4e9-e7bbba7c8dd5" class="bulleted-list"><li style="list-style-type:disc"><code>sv2feedelta=200000</code> → Sends a new template if the fees increase by at least 2<strong>00,000 satoshis</strong>.</li></ul><p id="19844f4a-23ef-8001-b44e-f09a9906ce2c" class="">If you want to see detailed logs, add this:</p><script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js" integrity="sha512-7Z9J3l1+EYfeaPKcGXu3MS/7T+w19WtKQY/n+xzmw4hZhJ9tyYmcUS+4QqAlzhicE5LAfMQSF3iFTK9bQdTxXg==" crossorigin="anonymous" referrerPolicy="no-referrer"></script><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism.min.css" integrity="sha512-tN7Ec6zAFaVSG3TpNAKtk4DOHNpSwKHxxrsiw4GHKESGPs5njn/0sMCUMl2svV4wo4BK/rCP7juYz+zx+l6oeQ==" crossorigin="anonymous" referrerPolicy="no-referrer"/><pre id="19844f4a-23ef-803e-9a87-de23a935f073" class="code"><code class="language-Shell" style="white-space:pre-wrap;word-break:break-all">-debug=sv2 -loglevel=sv2:trace
</code></pre><p id="19844f4a-23ef-80e6-a7be-d7a12845f9ee" class="">
</p></details></li></ul></div></p><h3 id="19844f4a-23ef-80bc-89bf-cdb8595c1110" class=""><strong>Step 3: Start Mining ! </strong>🚀</h3><p id="19844f4a-23ef-80fc-bcd0-ea22ece1daa0" class="">Now, run the binaries:</p><p id="1d044f4a-23ef-80b6-aa09-d1a0e33f65f3" class="">If you downloaded the binary from the release page the command is<div class="indented"><script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js" integrity="sha512-7Z9J3l1+EYfeaPKcGXu3MS/7T+w19WtKQY/n+xzmw4hZhJ9tyYmcUS+4QqAlzhicE5LAfMQSF3iFTK9bQdTxXg==" crossorigin="anonymous" referrerPolicy="no-referrer"></script><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism.min.css" integrity="sha512-tN7Ec6zAFaVSG3TpNAKtk4DOHNpSwKHxxrsiw4GHKESGPs5njn/0sMCUMl2svV4wo4BK/rCP7juYz+zx+l6oeQ==" crossorigin="anonymous" referrerPolicy="no-referrer"/><pre id="19844f4a-23ef-80f7-a62c-ce7e6f2081fb" class="code"><code class="language-Bash" style="white-space:pre-wrap;word-break:break-all">./demand-cli-<OS> --test --token <your-token> --test-pool general-pool.dmnd.work:20000 -d 50T --delay 540</code></pre><ul id="1d044f4a-23ef-8015-8cf6-d293431bb9ab" class="bulleted-list"><li style="list-style-type:disc">Replace<mark class="highlight-red"><OS></mark> with linux, mac or windows.exe depending on your OS</li></ul><ul id="21044f4a-23ef-8008-8ff5-eea5d5966027" class="toggle"><li><details open=""><summary><strong>Optional (only if you run your own node):</strong></summary><ul id="21044f4a-23ef-80ab-92fd-f75a91a5956c" class="bulleted-list"><li style="list-style-type:disc"><code>TP_ADDRESS</code> → The address of your Bitcoin node (set up in Step 3).</li></ul><ul id="21044f4a-23ef-8081-9014-d135bea34cf2" class="bulleted-list"><li style="list-style-type:disc">If the node is on <strong>the same machine</strong>, add to the command: </li></ul><script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js" integrity="sha512-7Z9J3l1+EYfeaPKcGXu3MS/7T+w19WtKQY/n+xzmw4hZhJ9tyYmcUS+4QqAlzhicE5LAfMQSF3iFTK9bQdTxXg==" crossorigin="anonymous" referrerPolicy="no-referrer"></script><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism.min.css" integrity="sha512-tN7Ec6zAFaVSG3TpNAKtk4DOHNpSwKHxxrsiw4GHKESGPs5njn/0sMCUMl2svV4wo4BK/rCP7juYz+zx+l6oeQ==" crossorigin="anonymous" referrerPolicy="no-referrer"/><pre id="21044f4a-23ef-80e8-b909-c8f4771e191d" class="code"><code class="language-Bash" style="white-space:pre-wrap;word-break:break-all">--tp_address 127.0.0.1:8442</code></pre><ul id="21044f4a-23ef-801e-a1ed-d7905e2d05b5" class="bulleted-list"><li style="list-style-type:disc">If it's on <strong>another machine</strong>, use its IP instead of <code>127.0.0.1</code>.</li></ul><p id="21044f4a-23ef-8031-b1c2-dceacdb3ec58" class="">This tells the proxyclient to use your node for job declaration.</p></details></li></ul></div></p><p id="1d044f4a-23ef-8011-bf9a-c1b3e99fdc32" class="">If you built the binaries from source the command is:<div class="indented"><script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js" integrity="sha512-7Z9J3l1+EYfeaPKcGXu3MS/7T+w19WtKQY/n+xzmw4hZhJ9tyYmcUS+4QqAlzhicE5LAfMQSF3iFTK9bQdTxXg==" crossorigin="anonymous" referrerPolicy="no-referrer"></script><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism.min.css" integrity="sha512-tN7Ec6zAFaVSG3TpNAKtk4DOHNpSwKHxxrsiw4GHKESGPs5njn/0sMCUMl2svV4wo4BK/rCP7juYz+zx+l6oeQ==" crossorigin="anonymous" referrerPolicy="no-referrer"/><pre id="1d044f4a-23ef-80cc-8dc8-d95d13730732" class="code"><code class="language-Bash">./target/release/demand-cli --test --token <your-token> --test-pool general-pool.dmnd.work:20000 -d 50T --delay 540</code></pre></div></p><p id="1d044f4a-23ef-80ce-89f7-d0de5ff3a4b8" class="">
</p><ul id="19844f4a-23ef-8004-95bd-c2d914d6d9c8" class="bulleted-list"><li style="list-style-type:disc">The proxy listens for connections on <strong>port 32767</strong>.</li></ul><ul id="19844f4a-23ef-807c-9a34-e5f10a5960d3" class="bulleted-list"><li style="list-style-type:disc">Connect your sv1 mining downstream (miner) or your own proxy (if any) to <code>0.0.0.0:32767</code> and start mining!</li></ul><ul id="1b544f4a-23ef-8036-afa1-c6eba43f819d" class="bulleted-list"><li style="list-style-type:disc"><strong>Options:</strong><ul id="1b544f4a-23ef-80df-80ef-fb9fc5be35d2" class="bulleted-list"><li style="list-style-type:circle"><mark class="highlight-red"><strong>—test</strong></mark>: Connects to test endpoint. </li></ul><ul id="21044f4a-23ef-801a-9ca0-d00f42234cbf" class="bulleted-list"><li style="list-style-type:circle"><code>--test-pool</code>: Sets the test pool address</li></ul><ul id="1b544f4a-23ef-80dc-914e-c1e07ea6d558" class="bulleted-list"><li style="list-style-type:circle"><mark class="highlight-red"><strong>-d</strong></mark>: Specifies the expected downstream hashrate. Use formats like 10T (10 Terahash), 2.5P (2.5 Petahash), or 5E (5 Exahash). Defaults to 100 TH/s if not provided.<ul id="1c944f4a-23ef-8054-b755-da792bf68fbc" class="bulleted-list"><li style="list-style-type:square"><mark class="highlight-red">-d </mark> stands for the hashrate of individual<em> </em>miner if connecting devices directly to the proxy (e.g., <mark class="highlight-red">-d</mark> 50T for a miner with 50 TH/s).</li></ul><ul id="1c944f4a-23ef-8066-b899-fb084e13cf52" class="bulleted-list"><li style="list-style-type:square"><mark class="highlight-red">-d </mark> stands for aggregate hashrate when using a hashrate aggregator before the proxy.</li></ul></li></ul><ul id="1c944f4a-23ef-802b-8f86-f0a0c479d590" class="bulleted-list"><li style="list-style-type:circle"><code><strong>--loglevel</strong></code><strong>, </strong><code><strong>-l</strong></code>: Sets the logging level for the application. Accepts values like trace, debug, warn, info and error. Defaults to info if not provided.</li></ul><ul id="1c944f4a-23ef-8002-ae03-da0c96ef23e2" class="bulleted-list"><li style="list-style-type:circle"><code><strong>--nc</strong></code><strong>, </strong><mark class="highlight-red"><strong>-n</strong></mark>: Enables or disables noise connection logging for debugging purposes. Use on to enable or off to disable. Defaults to off if not provided.</li></ul><ul id="1e444f4a-23ef-80e4-85c9-dddcb4ad4fc5" class="bulleted-list"><li style="list-style-type:circle"><code>--delay</code>: Sets how long the proxy should wait before starting to update the difficulty. This is especially helpful for miners that take some time to submit their first shares after connecting. </li></ul></li></ul><p id="1b244f4a-23ef-80f0-b77a-f4a0ba739b54" class="">
</p><p id="1b244f4a-23ef-80da-9f76-deba5e498fb6" class="">For further information on how Stratum V2 works, the Stratum Reference Implementation (SRI) <a href="https://stratumprotocol.org/">website</a> has a wealth of information on everything SV2 related.</p><h1 id="1b244f4a-23ef-80c8-a454-ee8c706431dc" class="">FAQ</h1><p id="1b244f4a-23ef-8089-adff-fbb6185ae6a3" class="">
</p><ul id="1b344f4a-23ef-802a-b530-d55b7fade7df" class="toggle"><li><details open=""><summary><strong>What is StratumV2: </strong></summary><p id="1b344f4a-23ef-8046-906a-c5b05cb2bec4" class="">Stratum V2 was built from the ground up by a diverse group of FOSS Bitcoin Developers with a focus on security, efficiency, and backwards compatibility. It increases security, makes data transfers more efficient, and reduces mining infrastructure requirements. It also introduces three new sub-protocols that let miners select transaction sets and improve decentralization.</p></details></li></ul><ul id="1b344f4a-23ef-80a5-a2d6-cfd873a6dca7" class="toggle"><li><details open=""><summary><strong>What is Translator Proxy Service?</strong></summary><p id="1b344f4a-23ef-80a7-8d60-d92d93a0d605" class="">One of the key efforts in the development of Stratum v2 was to make the transition from Stratum V1 to Stratum V2 as easy as possible. This was achieved by standardizing and clarifying the role of the <a href="https://stratumprotocol.org/docs/#translation-proxy">Translator Proxy Server (TPS)</a>.</p></details></li></ul><ul id="1b244f4a-23ef-80ad-9802-eaee0bfc5b7a" class="toggle"><li><details open=""><summary><strong>Can I run both the proxy and the patched bitcoin node in the same computer?</strong></summary><p id="1b244f4a-23ef-80cb-8af9-d39413600661" class="">Yes.</p></details></li></ul><ul id="1b244f4a-23ef-8082-a908-dec0f47e2848" class="toggle"><li><details open=""><summary><strong>What are the pc requirements to run both the proxy and the patched bitcoin node?</strong></summary><p id="1b244f4a-23ef-80d5-9cb8-fe66286d22a9" class="">The same as of a regular Bitcoin core node. You can check them out <a href="https://bitcoin.org/en/full-node#minimum-requirements">here.</a> Since the patched node doesn’t store the blockchain, there is no need for a hard drive with significant storage space.</p></details></li></ul><ul id="1b244f4a-23ef-808c-a8d9-c68676a38bdf" class="toggle"><li><details open=""><summary><strong>Can I use my regular node as a template provider for my workers?</strong></summary><p id="1b244f4a-23ef-8075-9c91-fe81905e22c4" class="">No, you will have to use the patched node previously mentioned in this guide.</p></details></li></ul><ul id="1b244f4a-23ef-80f3-9550-eeb162c61805" class="toggle"><li><details open=""><summary><strong>Does DMND pool have a Stratum V1 endpoint?</strong></summary><p id="1b244f4a-23ef-809d-99e6-ec2ebae03195" class="">No, DMND is Stratum V2 only.</p></details></li></ul><p id="1b344f4a-23ef-8099-9c51-c2d317237c5e" class="">
</p></div></article><span class="sans" style="font-size:14px;padding-top:2em"></span></body></html>