|
| 1 | +{ |
| 2 | + // List of main and failover pools |
| 3 | + "pools": [ |
| 4 | + { |
| 5 | + "user": "1MKrTujwHxda6knL8hHrPMi7Git4upX56E", // wallet address |
| 6 | + "url": "stratum+tcp://mine.icemining.ca:8433", // pool stratum |
| 7 | + "pass": "c=BCD" // password |
| 8 | + }, |
| 9 | + { |
| 10 | + "user": "1MKrTujwHxda6knL8hHrPMi7Git4upX56E", |
| 11 | + "url": "stratum+tcp://eu.gos.cx:8844", |
| 12 | + "pass": "c=BCD" |
| 13 | + } |
| 14 | + ], |
| 15 | + |
| 16 | + // Telnet API bind address. |
| 17 | + "api-bind-telnet": "0.0.0.0:4068", // Set to "0" to disable Telnet API |
| 18 | + |
| 19 | + // HTTP API bind address. |
| 20 | + "api-bind-http": "0.0.0.0:4067", // Set to "0" to disable HTTP API |
| 21 | + |
| 22 | + // If set to true enables json response for Telnet API. |
| 23 | + "json-response": false, |
| 24 | + |
| 25 | + // Connection retries count. After this number of attempts failover pool will be switched. |
| 26 | + "retries": 3, |
| 27 | + |
| 28 | + // Pause in seconds between retries. |
| 29 | + "retry-pause": 10, |
| 30 | + |
| 31 | + // Maximum time in seconds your pool connection may have no ping. After that reconnect will happen. |
| 32 | + "timeout": 180, |
| 33 | + |
| 34 | + // Name of mining algorithm. You can see available names at the top of the help file. |
| 35 | + "algo": "bcd", |
| 36 | + |
| 37 | + // This is GPU index in the system. You can select multiple GPUs sequentially: "devices": "0,2,3" |
| 38 | + "devices": 0, // Use only the first GPU in your rig. Remove this parameter to use all GPUs |
| 39 | + |
| 40 | + // Intensity used with your GPUs. It can be different for each GPU, e.g. "intensity": "20,21.4,23" |
| 41 | + "intensity": 20, |
| 42 | + |
| 43 | + // Sliding window length in sec used to compute average hashrate. |
| 44 | + "hashrate-avr": 30, // Set to 3600 to get average over an hour |
| 45 | + |
| 46 | + // Path to the log file. If only file name set log will be saved into directory with the miner. |
| 47 | + "log-path": "t-rex.log", |
| 48 | + // "log-path": "/home/x/t-rex.log", // Absolute path |
| 49 | + |
| 50 | + // Set process priority (default: 2) 1 below normal, 2 normal to 5 highest. |
| 51 | + "cpu-priority": 2, |
| 52 | + |
| 53 | + // Shutdown miner immediately if has any CUDA error. |
| 54 | + "exit-on-cuda-error": true, |
| 55 | + |
| 56 | + // Shutdown miner immediately if pool connection lost. |
| 57 | + "exit-on-connection-lost": false, |
| 58 | + |
| 59 | + // Forces miner to immediately reconnect to pool on N successively failed shares (default: 10). |
| 60 | + "reconnect-on-fail-shares": 10, |
| 61 | + |
| 62 | + // User protocol logging. |
| 63 | + "protocol-dump": false, // Set to true to turn it on. |
| 64 | + |
| 65 | + // Configurable GPUs report frequency. By default every 5 shares. |
| 66 | + "gpu-report-interval": 5, |
| 67 | + |
| 68 | + // Disable color output for console |
| 69 | + "no-color": false, |
| 70 | + |
| 71 | + // Quiet mode. No GPU stats at all. |
| 72 | + "quiet": false, |
| 73 | + |
| 74 | + // Shutdown miner after timeout in sec. By default disabled. (set to 0) |
| 75 | + "time-limit": 0, |
| 76 | + |
| 77 | + // Disables device till miner shutdown in case of overheat. Limit in Celsius. (set to 0) |
| 78 | + "temperature-limit": 0, |
| 79 | + |
| 80 | + // GPU temperature to enable card after it's been disabled. (default: 0 - disabled) |
| 81 | + "temperature-start": 0, |
| 82 | + |
| 83 | + // Forces miner to switch back to main pool in case working with failover pool. Parameter is set in seconds. (default: 600) |
| 84 | + "back-to-main-pool-sec": 600 |
| 85 | +} |
0 commit comments