Skip to content

Commit 41391cf

Browse files
readme
1 parent f1d8db3 commit 41391cf

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

README.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,25 @@ This is a fork of my MVis-ethminer program, which was a fork of Genoil's ethmine
1818

1919
* Unzip the [download package](https://github.com/mining-visualizer/MVis-tokenminer/releases) anywhere you like.
2020
* Open up `tokenminer.ini` using any text editor and set the following configuration items:
21-
* For POOL MINING, the main thing you need to specify in the .INI file is your ETH account address to which rewards will be paid out. Look for the line that starts with `MinerAcct=`. You can also specify the pool mining address in the `[Node]` section, or you can do that on the command line (-N). See below for all command line options.
22-
* For SOLO MINING:
21+
* For **Pool Mining**, you need to specify your mining pool and your ETH address.
22+
23+
```
24+
[Node]
25+
Host=http://your_mining_pool.com
26+
RPCPort=8586
27+
28+
[0xBitcoin]
29+
MinerAcct=0x1234512345123451234512345123451234512345
30+
```
31+
* All other settings in the `[0xBitcoin]` section can be left as is.
32+
* You can also specify the pool mining address on the command line (-N). See below for all command line options.
33+
* If you mining pool supports the **stratum protocol**, change the `RPCPort=8586` line to `StratumPort=9192`. Consult with your mining pool for the actual port #.
34+
* For **Solo Mining**:
2335
* Input an ETH account and associated private key. (Sorry about making you enter it in plain text format. Make sure it is a 'throw away' account with only the bare minimum amount of money.)
2436
* You can specify the address and port of your node in the `.ini` file, or on the command line.
2537
* You can enable gas price bidding. (see comments in the file). Note that enabling this feature does not guarantee that you will win every bid. Network latency will sometimes result in failed transactions, even if you 'out-bid' the other transaction.
2638
* You can leave the .INI file in the executable folder, or you can move it to `C:\Users\[USER]\AppData\Local\tokenminer` on Windows, or `$HOME/.config/tokenminer` on Linux. If that folder path does not exist, you will need to create it manually. If for some reason that file exists at both locations, the one in the executable folder will take precedence.
27-
* WINDOWS ONLY: download and install **both** the [VC 2013 Redistributable](https://www.microsoft.com/en-ca/download/details.aspx?id=40784) and the [VC 2015 Redistributable](https://www.microsoft.com/en-ca/download/details.aspx?id=48145)
39+
* **WINDOWS ONLY**: download and install both the [VC 2013 Redistributable](https://www.microsoft.com/en-ca/download/details.aspx?id=40784) and the [VC 2015 Redistributable](https://www.microsoft.com/en-ca/download/details.aspx?id=48145)
2840
* Double-click on the file `list-devices.bat`. Examine the screen output and verify your GPU's are recognized. Pay special attention to the PlatformID. If it is anything other than 0, you will need to edit the `start-mining.bat` file and change the `--opencl-platform <n>` argument.
2941
* Start POOL MINING by double-clicking on `start-mining.bat`.
3042
* Start SOLO MINING with `tokenminer.exe -S -G`. This assumes you've specified the node address in the .INI file.
@@ -92,6 +104,9 @@ Node configuration:
92104
; Examples, POOL MINING:
93105
; Host=http://your_mining_pool.com
94106
; RPCPort=8586
107+
; or
108+
; StratumPort=9192
109+
;
95110
; Examples, SOLO MINING:
96111
; Host=127.0.0.1
97112
; Host=https://mainnet.infura.io/your_api_key

0 commit comments

Comments
 (0)