Search content
Sort by

Showing 20 of 79 results by mi6ee
Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO (CPU/GPU/ASIC) Ethash/Etchash/Kawpow/Kaspa/Octopus/Firo/Equihash
by
mi6ee
on 17/08/2023, 10:07:02 UTC

Update Miner Software:
Team Red Miner v0.10.10
SRBMiner-MULTI GPU & CPU Miner 2.3.3
Rigel 1.6.4
miniZ 2.1
Gminer 3.41
RainbowMiner v4.8.9.9
NBMiner v42.2 LHR
BzMiner v15.4.3
cpuminer-opt v3.22.3
WildRig Multi 0.36.10
lolMiner 1.76a
TeamBlackMiner v1.95

Download SMP 1.4.0: https://github.com/MiningSoftware/SmartMinerPRO/releases/tag/smp140
Post
Topic
Board Mining (Altcoins)
Topic OP
KaspaMiner - A fast CPU/GPU miner for Kaspa
by
mi6ee
on 21/11/2022, 11:28:23 UTC
KaspaMiner - A fast CPU/GPU miner for Kaspa KAS

GitHub: https://github.com/tmrlvi/kaspa-miner
Discord: https://discord.gg/kS3SK5F36R
Telegram: https://t.me/Kaspaenglish

Installation
From Sources: Installing via cargo install is not supported for the latest version.

The regular version is still available at

cargo install kaspa-miner

From Git Sources
If you are looking to build from the repository (for debug / extension), note that the plugins are additional packages in the workspace. To compile a specific package, you run the following command or any subset of it

git clone git@github.com:tmrlvi/kaspa-miner.git
cd kaspa-miner
cargo build --release -p kaspa-miner -p kaspacuda -p kaspaopencl

And, the miner (and plugins) will be in targets/release. You can replace the last line with

cargo build --release --all

From Binaries
The release page includes precompiled binaries for Linux, and Windows (for the GPU version).

Removing Plugins
To remove a plugin, you simply remove the corresponding dll/so for the directory of the miner.

libkaspacuda.so, libkaspacuda.dll: Cuda support for Kaspa-Miner
libkaspaopencl.so, libkaspaopencl.dll: OpenCL support for Kaspa-Miner
Usage
To start mining, you need to run kaspad and have an address to send the rewards to. Here is a guidance on how to run a full node and how to generate addresses: https://github.com/kaspanet/docs/blob/main/Getting%20Started/Full%20Node%20Installation.md

Help:

kaspa-miner
A Kaspa high performance CPU miner

USAGE:
    kaspa-miner [OPTIONS] --mining-address <MINING_ADDRESS>

OPTIONS:
    -a, --mining-address <MINING_ADDRESS>                  The Kaspa address for the miner reward
        --cuda-device <CUDA_DEVICE>                        Which CUDA GPUs to use [default: all]
        --cuda-disable                                     Disable cuda workers
        --cuda-lock-core-clocks <CUDA_LOCK_CORE_CLOCKS>    Lock core clocks eg: ,1200, [default: 0]
        --cuda-lock-mem-clocks <CUDA_LOCK_MEM_CLOCKS>      Lock mem clocks eg: ,810, [default: 0]
        --cuda-no-blocking-sync                            Actively wait for result. Higher CPU usage, but less red blocks. Can have lower workload.
        --cuda-power-limits <CUDA_POWER_LIMITS>            Lock power limits eg: ,150, [default: 0]
        --cuda-workload <CUDA_WORKLOAD>                    Ratio of nonces to GPU possible parrallel run [default: 64]
        --cuda-workload-absolute                           The values given by workload are not ratio, but absolute number of nonces [default: false]
    -d, --debug                                            Enable debug logging level
        --devfund-percent <DEVFUND_PERCENT>                The percentage of blocks to send to the devfund (minimum 2%) [default: 2]
        --experimental-amd                                 Uses SMID instructions in AMD. Miner will crash if instruction is not supported
    -h, --help                                             Print help information
        --mine-when-not-synced                             Mine even when kaspad says it is not synced
        --nonce-gen <NONCE_GEN>                            The random method used to generate nonces. Options: (i) xoshiro (ii) lean [default: lean]
        --opencl-amd-disable                               Disables AMD mining (does not override opencl-enable)
        --opencl-device <OPENCL_DEVICE>                    Which OpenCL GPUs to use on a specific platform
        --opencl-enable                                    Enable opencl, and take all devices of the chosen platform
        --opencl-no-amd-binary                             Disable fetching of precompiled AMD kernel (if exists)
        --opencl-platform <OPENCL_PLATFORM>                Which OpenCL platform to use (limited to one per executable)
        --opencl-workload <OPENCL_WORKLOAD>                Ratio of nonces to GPU possible parrallel run in OpenCL [default: 512]
        --opencl-workload-absolute                         The values given by workload are not ratio, but absolute number of nonces in OpenCL [default: false]
    -p, --port <PORT>                                      Kaspad port [default: Mainnet = 16110, Testnet = 16211]
    -s, --kaspad-address <KASPAD_ADDRESS>                  The IP of the kaspad instance [default: 127.0.0.1]
    -t, --threads <NUM_THREADS>                            Amount of CPU miner threads to launch [default: 0]
        --testnet                                          Use testnet instead of mainnet [default: false]
To start mining, you just need to run the following:

./kaspa-miner --mining-address kaspa:XXXXX

This will run the miner on all the available GPU devcies.

Devfund
The devfund is a fund managed by the Kaspa community in order to fund Kaspa development
A miner that wants to mine higher percentage into the dev-fund can pass the following flags:
--devfund-precent=XX.YY to mine only XX.YY% of the blocks into the devfund.

This version automatically sets the devfund donation to the community designated address. Due to community decision, the minimum amount in the precompiled binaries is 2%

Donation Addresses

Elichai: kaspa:qzvqtx5gkvl3tc54up6r8pk5mhuft9rtr0lvn624w9mtv4eqm9rvc9zfdmmpu
HauntedCook: kaspa:qz4jdyu04hv4hpyy00pl6trzw4gllnhnwy62xattejv2vaj5r0p5quvns058f

![](RackMultipart20201215-4-15jlsns_html_ba4ab6024277b8b9.gif)

# Kaspad: Full Node Installation Guide

Kaspad is a reference full node Kaspa implementation written in Go (golang).

## Compilation Requirements

If you want to compile the binaries yourself (if you aren't sure whether you want to, then you probably don't), you would need Go 1.16 or later.

## Setup

Mining Kaspa requires two components: a node (kaspad), and a miner. A third component is required to create and maintain a wallet. The node listens for new blocks while the miner is searching for blocks to report to the node. All three components are provided as stand alone files which require no installation.

You need to either download precompiled binaries, or compile the codebase yourself. The first option is recommended for most users.

Note that all kaspad and the miner must be running in parallel. That is, each should be running from a different console and should not be distured as long as mining takes place.

#### Download Binaries

The easiest way to use kaspad is to download the binaries from [here](https://github.com/kaspanet/kaspad/releases/latest). After downloading the binaries that fit your operating system, you should extract them to some folder.

Notice that the rest of the tutorial assumes that you installed from source, so before each command you run you should first run:
```bash
$ cd <THE_EXTRACTED_BINARIES_FOLDER>
```

Linux and Mac users might need to add `./` to any command so it'll run the corresponding binary. For example:
```bash
./kaspad --utxoindex
```


#### Build from Source

- Install Go according to the installation instructions here:
  http://golang.org/doc/install

- Ensure Go was installed properly and is a supported version:

```bash
$ go version
```

- Run the following commands to obtain and install kaspad including all dependencies:

```bash
$ git clone https://github.com/kaspanet/kaspad
$ cd kaspad
$ go install . ./cmd/...
```

- Kaspad (and utilities) should now be installed in `$(go env GOPATH)/bin`. If you did
  not already add the bin directory to your system path during Go installation,
  you are encouraged to do so now.

## Getting Started

Kaspad has several configuration options available to tweak how it runs, but all
of the basic operations work with zero configuration except the `--utxoindex` flag (you can omit this flag if you don't use the wallet):

```bash
$ kaspad --utxoindex
```

You can invoke ```kaspad --help``` to get a list of more running flags.

The first time you run kaspad it will retrieve peer information from Kaspa's DNS server and will start synchronizing with the network. First synchronization may take up to several hours (depending on your CPU strength and bandwidth). It is impossible to mine before the network is synced. Every time you run kaspad it will incrementally sync any blocks accumulated while it was offline, this is typically a much shorter process (as long as kaspad was not shut down for more than several hours).

### Creating a Wallet (optional)

To run a miner you need to create a keypair to mine into:
```bash
$ kaspawallet create
```

You will be asked to choose a password for the wallet (a password must be at least 8 characters long, and it won't be shown on the screen you as you entering it). After that you should run this command in order to start the wallet daemon:
```bash
$ kaspawallet start-daemon
```

And then run this in order to request an address from the wallet:
```bash
$ kaspawallet new-address
```

Your screen will show you something like this:
```
The wallet address is:
kaspa:0123456789abcdef0123456789abcdef0123456789
```

**Note**: Every time you ask kaspawallet for an address you will get a different address. This is perfectly fine. Every secret key is associated with many different public addresses and there is no reason not to use a fresh one for each transaction.

At this point your can close the wallet daemon, though you should keep it running of you want to be able to check your balance and make transactions

### Running a miner (optional)

**Note**: Our miner was highly superceded by Elichai's miner (see below), we recommend that you use that miner instead.

After having created a wallet, copy the address and run kaspaminer with it:
```bash
$ kaspaminer --miningaddr kaspa:<YOUR_CREATED_ADDRESS>
```

**Note:** The miner is single threaded, so it is best to run several instances of it to utilize more than one CPU core.
**Note:** Mining cannot start before the network is syncrhonized. In order to conserve your CPU, the miner will not start mining before the node is synced. Hence, it is expected to see a mining rate of 0 Hashes/second for a while as kaspad obtains the current network state.

### Mining on Additional Computers
Not all machines need to run kaspad. Once you have a running node, any other machine can report their blocks to it by using the ```-s``` flag:

```bash
$ kaspaminer -s <node IP address> --miningaddr kaspa:<YOUR_CREATED_ADDRESS>
```

You can run ```ifconfig``` in Linux or Mac or ```ipconfig``` in Windows on the machine running kaspad to find out its IP address.

### Elichai's Miner

Available here: https://github.com/elichai/kaspa-miner/releases/latest

Elichai's miner is an efficient miner written in Rust which outperforms the native miner by about an order of magnitude. The syntax is largely the same only the ```--miningaddr``` flag has been renamed to ```--mining-address``` and the ```-s``` flag has been replaced with ```--kaspad-address```.

A typical invocation of the miner might look like

```bash
$ kaspa-miner-v0.1.0-win64-amd64 --kaspad-address <node IP address> --mining-address <wallet address>
```

Like in the native miner, when running the miner from the same machine running kaspad, the ```--kaspad-address``` flag may be omitted.

**Note:** Elichai's miner is multi threaded, so it is **not needed** to run several instances. By default, it will run one thread per physical/logical core (but not a virtual one, aka HyperThreading/SMT core). If you want to run it on more or less cores, this could be adjusted with the ```--threads``` flag

**Note:** Unlike the native miner, Elichai's miner is churning blocks regardless of the sync status of kaspad. Any blocks discovered while the network is out of sync will not be accepted. If you get the error ```"Block not submitted - IBD is running"``` this simply means the node is out of sync, either because the initial sync has not finished yet or because it fell out of sync momentarily.

**Note for Windows users:** Elichai's binary is unsigned, which means that it is automatically blocked by Windows defender in some systems. In order to run it, you might have to manually add an exclusion. **DO NOT TURN OFF WINDOWS DEFENDER COMPLETELY JUST TO RUN THE MINER!**

**Note for Linux/Mac users:** Sometimes the system does not recognize the miner file as an executable. This results in a ```permission denied``` error when trying to invoke the miner. This could be fixed by issuing the command ```chmod +x <file name>```.

### GPU Miner

A community developed GPU miner with CUDA support is available here: https://github.com/elichai/kaspa-miner/releases/latest.
The GPU miner now supports openCL and AMD GPUs as well.

### Opening Ports

By forwarding port 16111 (unless configured otherwise) to the machine running kaspad, your node becomes a public node which other members of the network can use to sync. Even though private nodes can still mine, it is encouraged that you make your node public for the general health of the network. Like any other decentralized systems, Kaspa works best when there are many public nodes.

### Kaspad Hardware Requirements

**Minimum:**
- 100 GB disk space
- 7th generation i7 4-core processor or AMD equivalent
- 8GB memory
- 10 Mbit internet connection

**Recommended:**
- 9th generation i7 8-core processor or AMD equivalent
- 16 GB memory
- 40 Mbit internet connection

### Discord

You may want to join our discord server for further questions: https://discord.gg/SfHCaDchrs

---

[Back](/Getting%20Started/README.md) | [Docs Home](../../main/README.md)
Post
Topic
Board Mining (Altcoins)
SmartMinerPRO v1.3.3 - Add Kaspa mining
by
mi6ee
on 21/11/2022, 11:12:15 UTC
SmartMinerPRO v1.3.3 - Add Kaspa mining

Add Miner Software:
+ KaspaMiner: https://github.com/tmrlvi/kaspa-miner/releases/tag/v0.2.1-GPU-0.7
+ BZMiner: https://github.com/bzminer/bzminer/releases

Update Miner Software:
+ GMiner 3.12
+ lolMiner 1.61
+ miniZ 1.9z5b
+ NBMiner 42.2
+ BzMiner 12.1.1

Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO - AI GUI Multi crypto mining panel for CPU/GPU/ASIC/FPGA
by
mi6ee
on 03/10/2022, 06:02:31 UTC
Release Note SmartMinerPRO:

v1.3.2

Add Miners and Updates SMP:
+ Team Red Miner v0.10.3.1
+ SRBMiner-MULTI GPU & CPU Miner 1.0.9
+ lolMiner 1.56
+ GMiner v3.06
+ Nanominer v3.7.2
+ miniZ v1.9z2
+ WildRig Multi 0.32.5
+ Team Black Miner v1.69
+ BzMiner 2.6
+ bminer 16.4.9

SmartMinerPRO (SMP) - GUI multi crypto mining panel for CPU/GPU/ASIC/FPGA

SmartMinerPRO (SMP) is a software product developed by SmartMiner.PRO with a simple and convenient GUI. This version of SMP was created to work with each cryptocurrency based on these algorithms, including Bitcoin. Ethereum, Ethereum Classic, Sumocoin, Grin, Monero, Ravencoin and many others. This version of SMP runs on Windows with CPUs and GPUs AMD or Nvidia and ASIC/FPGA.


DevFee

SmartMinerPRO (SMP) is completely free software. This does not apply to built-in programs for mining (miners).

Key Features SMP:

  • 💎 Built-in miners: XMR-STAK & XMRIG, GMINER. T-REX, TeamRedMiner, CGMiner, T-Rex, NBMiner, Nanominer, PhoenixMiner, CCMiner, miniz, cpu miner, cpuminer-opt, Kadena Miner, Kawpowminer and many others.
  • 🖥 Works on all versions of Windows
  • 📊 Over 50 of the best mining puols
  • ℹ️ Complete information about each currency with links  
  • 📈 CoinGecko price and coin statistics
  • 📊 Coin mining statistics from Cryptunit
  • ♻️ CPU & GPU Mining
  • 🔸 Easy to use
  • 🔸 Easy installation of other miners and .bat configuration files.
  • 🔸 To start mining using SMP +, just enter your wallet in the .bat file of the selected miner
  • 🔸 SMP + has demonstrated high performance when working with Bitcoin, Ethereum, Ethereum Classic, Monero, Raven and other currencies, stands out for its high stability and easy setup.
  • 🔸 Easy one-click CPU mining for CPUs that support at least SSE2 (only works on Windows x64).
  • 🔸 Easy one-click GPU mining for NVIDIA GPUs using microarchitecture (compute capability) SM 3.0+.
  • 🔸 Easy one-click GPU mining for AMD GPUs using any AMD GPU devices that supports OpenCL.
  • 🔸 Integrated support for Simple Multi-Algorithm. Always mine most profitable algorithm.
  • 🔸 Integrated benchmarking tool. Run it only once before you start mining and after every hardware/driver/software upgrade.
  • 🔸 Watch-feature - automatically restart miner if crashed or hanged.
  • 🔸 Much more..

Screenshots GUI SmartMinerPRO SMP:


How to start

1. Download "SmartMinerPRO"
2. Unpack the archive
3. Run "SmartMinerPRO.exe"

IMPORTANT! For your mining equipment, you must install the necessary dependencies. Since each miner program has its own requirements for work. For reference, you can refer to the root directory in the miner’s folder.

System requirements

! OS Support: Windows (32/64 bit).

    - WINDOWS XP,7,8,10 or later (x64)
    - CPU (x64/x86/ARM) For CPU mining a modern CPU with SSE2 support
    - OpenCL for AMD GPUs. For AMD mining any AMD GPU with OpenCL support
    - CUDA for NVIDIA GPUs. For NVIDIA mining any NVIDIA GPU with Compute capability (SM) 3.0 or newer
    - up-to-date patches for OS
    - up-to-date drivers for all GPUs
    - Reliable internet connectivity

Note: .NET Framework 4.8 or higher and Microsoft Visual C++ Redistributable 2015 are required. No additional installations should be needed if you use Windows 7 or later. However, if you encounter any issues when starting application (application would fail to start or errors/warnings about missing DLL files are displayed) you should download and install Microsoft .NET Framework 4.8 and Microsoft Visual C++ Redistributable 2015 (vcredist_x64.exe) (after installation a reboot might be required).

    - Microsoft .NET Framework 4.8: https://dotnet.microsoft.com/download/dotnet-framework/thank-you/net48-web-installer
    - Microsoft Visual C++ Redistributable 2015: https://www.microsoft.com/en-us/download/details.aspx?id=48145

Full list Support miners SmartMinerPRO:

    + bminer
    + ccminer
    + Nanominer
    + Claymore
    + cpuminer-opt
    + cpuminer-GR
    + CryptoDredge
    + ethminer
    + EWB
    + Gminer
    + cgminer
    + sgminer
    + wildrig-multi  
    + kawpowminer
    + lolMiner
    + miniZ
    + NBMiner
    + PhoenixMiner
    + Progpowminer
    + SRBMiner-CN
    + SRBMiner-Multi
    + TeamRedMiner
    + TeamBlackMiner
    + T-Rex Miner
    + TT-Miner
    + xmrig
    + xmr-stak
    + xmr-stak-rx
    + z-enemy

! Please note that the list of supported miners will be expanded with subsequent versions of the SMP

How to use SmartMinerPRO

1. At the first launch of SMP, select the coin to be mined • Optionally, you can choose what equipment will be used, according to the standard, all available CPU / GPUs are used.
2. Click "Start mining", in the mining parameters window, select the miner and the finished .bat file (coins \ pool) • By default, safe recommended settings for increased profitability of mining are used.
3. You can edit the .bat file to replace the wallet and pool values with your own by pressing the "EDIT" button. • If desired, you can replace the parameters of the request, for this we recommend that you refer to the practical guide in the root folders of the miners.
4. After replacing the values of the wallet and pool with yours, click "RUN"
5. Then begins the extraction of coins

Release Note:

v1.3.1

Add Miners and Updates:
+ teamredminer v0.10.0
+ SRBMiner-MULTI GPU & CPU Miner 0.9.6
+ lolMiner 1.51a
+ GMiner v2.99
+ PhoenixMiner 6.2c
+ T-Rex 0.26.4
+ NBMiner v42.2
+ Nanominer v3.6.3
+ TeamBlackMinerv 1.63

v1.3.0

Add Miners & Update:
+ GMiner 2.96
+ TRM 0.10.0
+ T-Rex 0.26.1
+ xmrig-6.7.0
+ cpuminer-opt-3.19.7
+ lolminer 1.51

Updates Notes SMP:
Check generated DAG, a warning at very high GPU overclocking for Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock GPU without errors
checking Shares on CPU, a warning when the GPU is overclocked too high for the Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock the GPU without errors
DAG caching, if the GPU has enough memory, DAG files are not recalculated when switching to another algorithm when mining Ethash + Zilliqa or Nicehash, which has a positive impact on user profitability
auto-selection of optimal cores for each device on Ethash, Etcash, KAWPOW
ability to manually select the core on each device for Ethash, Etcash
GPU temperature control and shutdown in case of overheating
watchdog - a process-watchdog that monitors the state of key systems of the miner, and will restart the miner if it crashes or hangs
Mechanism to recover lost connections to the pool
Failover support - the Miner uses failover pools until the connection to the main pool is restored
support for secure connections
SOCKS5 proxy support
informative and readable display of tabular statistics on the console
detailed information per device (temperature, power consumption, load on the cooler, memory frequency, CPU frequency, power efficiency)
parallel output of the information to the console and to a file on the disk
built-in statistics server - remote monitoring of the miner in a web browser
memory settings for Nvidia GPUs with GDDR5X and GDDR5 memory
Overclocking core clock, memory clock, core voltage, memory voltage, fan speed, power limit for Windows
Safe DAG generation for Nvidia GPUs
auto fan speed control to achieve target temperatures

v1.1.2

+Updates miner plugins:
bminer-v14.1.0
CryptoDredge_0.23.0
ccminer-2.3.1
Claymore_v15.0
cpuminer-opt-3.12.4
ethminer 0.19.0
EWB_v0.6
gminer_2_55
kawpowminer-1.2.3
lolMiner_v1.28a
miniZ_v1.5t2_cuda10
NBMiner_37.5
PhoenixMiner_5.6c
SRBMiner-CN-V1-9-3
SRBMiner-Multi-0-7.5
teamredminer-0.8.3
T-Rex 0.20.3
TT-Miner 6.1.0
xmrig-6.6.1
xmr-stak-2.10.8
z-enemy 2.5

v1.0.1
SMP is a smart multi-currency cryptocurrency miner for CPU / GPU / ASIC / FPGA. Which itself finds the available equipment and selects the optimal settings. SMP + allows you to connect / disconnect / stop / start one or more farms in one click. During the initial start-up, in the “Quick Start” step, you can select a separate algorithm for each farm.


Command line options

Network:

--no-cpu                  disable CPU mining backend
-o, --url=URL                 URL of mining server
-a, --algo=ALGO               mining algorithm
  --coin=COIN               specify coin instead of algorithm
  -u, --user=USERNAME           username for mining server
  -p, --pass=PASSWORD           password for mining server
  -O, --userpass=U:P            username:password pair for mining server
  -x, --proxy=HOST:PORT         connect through a SOCKS5 proxy
  -k, --keepalive               send keepalive packet for prevent timeout (needs pool support)
  --nicehash                enable nicehash.com support
  --rig-id=ID               rig identifier for pool-side statistics (needs pool support)
  --tls                     enable SSL/TLS support (needs pool support)
  --tls-fingerprint=HEX     pool TLS certificate fingerprint for strict certificate pinning
  --daemon                  use daemon RPC instead of pool for solo mining
  --daemon-poll-interval=N  daemon poll interval in milliseconds (default: 1000)
  -r, --retries=N               number of times to retry before switch to backup server (default: 5)
  -R, --retry-pause=N           time to pause between retries (default: 5)
  --user-agent              set custom user-agent string for pool
  --donate-level=N          donate level, default %% (5 minutes in 100 minutes)
  --donate-over-proxy=N     control donate over xmrig-proxy feature


CPU backend:

--no-cpu                  disable CPU mining backend
  -t, --threads=N               number of CPU threads
  -v, --av=N                    algorithm variation, 0 auto select
  --cpu-affinity            set process affinity to CPU core(s), mask 0x3 for cores 0 and 1
  --cpu-priority            set process priority (0 idle, 2 normal to 5 highest)
  --cpu-max-threads-hint=N  maximum CPU threads count (in percentage) hint for autoconfig
  --cpu-memory-pool=N       number of 2 MB pages for persistent memory pool, -1 (auto), 0 (disable)
  --cpu-no-yield            prefer maximum hashrate rather than system response/stability
  --no-huge-pages           disable huge pages support
  --asm=ASM                 ASM optimizations, possible values: auto, none, intel, ryzen, bulldozer
  --randomx-init=N          thread count to initialize RandomX dataset
  --randomx-no-numa         disable NUMA support for RandomX
  --randomx-mode=MODE       RandomX mode: auto, fast, light
  --randomx-1gb-pages       use 1GB hugepages for dataset (Linux only)
  --randomx-wrmsr=N         write custom value (0-15) to Intel MSR register 0x1a4 or disable MSR mod (-1)
  --randomx-no-rdmsr        disable reverting initial MSR values on exit
  --astrobwt-max-size=N     skip hashes with large stage 2 size, default: 550, min: 400, max: 1200
  --astrobwt-avx2           enable AVX2 optimizations for AstroBWT algorithm


API:

--api-worker-id=ID        custom worker-id for API
  --api-id=ID               custom instance ID for API
  --http-host=HOST          bind host for HTTP API (default: 127.0.0.1)
  --http-port=N             bind port for HTTP API
  --http-access-token=T     access token for HTTP API
  --http-no-restricted      enable full remote access to HTTP API (only if access token set)



OpenCL backend:

--opencl                  enable OpenCL mining backend
  --opencl-devices=N        comma separated list of OpenCL devices to use
  --opencl-platform=N       OpenCL platform index or name
  --opencl-loader=PATH      path to OpenCL-ICD-Loader (OpenCL.dll or libOpenCL.so)
  --opencl-no-cache         disable OpenCL cache
  --print-platforms         print available OpenCL platforms and exit


CUDA backend:

--cuda                    enable CUDA mining backend
  --cuda-loader=PATH        path to CUDA plugin (xmrig-cuda.dll or libxmrig-cuda.so)
  --cuda-devices=N          comma separated list of CUDA devices to use
  --cuda-bfactor-hint=N     bfactor hint for autoconfig (0-12)
  --cuda-bsleep-hint=N      bsleep hint for autoconfig
  --no-nvml                 disable NVML (NVIDIA Management Library) support


TLS:

--tls-gen=HOSTNAME        generate TLS certificate for specific hostname
  --tls-cert=FILE           load TLS certificate chain from a file in the PEM format
  --tls-cert-key=FILE       load TLS certificate private key from a file in the PEM format
  --tls-dhparam=FILE        load DH parameters for DHE ciphers from a file in the PEM format
  --tls-protocols=N         enable specified TLS protocols, example: "TLSv1 TLSv1.1 TLSv1.2 TLSv1.3"
  --tls-ciphers=S           set list of available ciphers (TLSv1.2 and below)
  --tls-ciphersuites=S      set list of available TLSv1.3 ciphersuites


Logging:

-S, --syslog                  use system log for output messages
-l, --log-file=FILE           log all output to a file
  --print-time=N            print hashrate report every N seconds
  --health-print-time=N     print health report every N seconds
  --no-color                disable colored output
  --verbose                 verbose output


Misc:

-c, --config=FILE             load a JSON-format configuration file
-B, --background              run the miner in the background
-V, --version                 output version information and exit
-h, --help                    display this help and exit
  --dry-run                 test configuration and exit
  --export-topology         export hwloc topology to a XML file and exit
  --title                   set custom console window title
  --no-title                disable setting console window title
 

DONATE:

BTC BTC: bc1qmpdug4lkkz4kvw2gnrfx9hjgclcge9ytq0z0wl
$ ETH: 0xd5533d796302DA0Ec67a34eBB0Ba432B164a1CA5
$ XMR: 8BFHZwHteLf46VhuXdw9t8h3oEm1ajFxPeNdLLKsnLZjS5EJQL1dJpSCdYFAzty2S2UYd8G86YvioXL b3yXfPLVvN71u1XK
$ RVN: RV8Tz58pZ6Q6fFn5LGGN8hQsUoPzJC1vMi
$ LTC: ltc1q2c68a8spxap6j3nhjk09rem6zf75rahgu7s0gh




Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO - AI GUI Multi crypto mining panel for CPU/GPU/ASIC/FPGA
by
mi6ee
on 30/08/2022, 06:41:01 UTC
What's the current status with the full LHR unlock?

I use Phoenix with 2 old Vega 56 and 1 RX470, and I just ordered a 3060 Ti (finally almost MSRP + taxes) to replace one of the Vegas.

I really like Phoenix, on par with the best miners with Vega 56 and low development fees, I don't want to change the miner when I get the 3060 Ti. What are the best Nvidia drivers to use?

I see reports for NB, Nicehash miner, LOL miner, but not for Phoenix with Nvidia.



Here is a LHR unlocker that actually works. Unlock full hashrate on NVIDIA LHR cards.

https://bitcointalk.org/index.php?topic=5398536.0

Works pretty good together with the PhoenixMiner
Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO (SMP) - GUI multi crypto mining panel for CPU/GPU/ASIC/FPGA
by
mi6ee
on 29/06/2022, 17:22:47 UTC
You can mine MTP algo on any MTP-supported miner. For example one of these miners: CcMiner, CryptoDredge, T-Rex, TeamRedMiner, TT-Miner, WildRig Multi Miner

I guess it will be wonderful to have MTP algo implemented in SMP miner!


SmartMinerPRO (SMP) - GUI multi crypto mining panel for CPU/GPU/ASIC/FPGA

SmartMinerPRO (SMP) is a software product developed by SmartMiner.PRO with a simple and convenient GUI. This version of SMP was created to work with each cryptocurrency based on these algorithms, including Bitcoin. Ethereum, Ethereum Classic, Sumocoin, Grin, Monero, Ravencoin and many others. This version of SMP runs on Windows with CPUs and GPUs AMD or Nvidia and ASIC/FPGA.


DevFee

SmartMinerPRO (SMP) is completely free software. This does not apply to built-in programs for mining (miners).

Key Features SMP:

  • 💎 Built-in miners: XMR-STAK & XMRIG, GMINER. T-REX, TeamRedMiner, CGMiner, T-Rex, NBMiner, Nanominer, PhoenixMiner, CCMiner, miniz, cpu miner, cpuminer-opt, Kadena Miner, Kawpowminer and many others.
  • 🖥 Works on all versions of Windows
  • 📊 Over 50 of the best mining puols
  • ℹ️ Complete information about each currency with links  
  • 📈 CoinGecko price and coin statistics
  • 📊 Coin mining statistics from Cryptunit
  • ♻️ CPU & GPU Mining
  • 🔸 Easy to use
  • 🔸 Easy installation of other miners and .bat configuration files.
  • 🔸 To start mining using SMP +, just enter your wallet in the .bat file of the selected miner
  • 🔸 SMP + has demonstrated high performance when working with Bitcoin, Ethereum, Ethereum Classic, Monero, Raven and other currencies, stands out for its high stability and easy setup.
  • 🔸 Easy one-click CPU mining for CPUs that support at least SSE2 (only works on Windows x64).
  • 🔸 Easy one-click GPU mining for NVIDIA GPUs using microarchitecture (compute capability) SM 3.0+.
  • 🔸 Easy one-click GPU mining for AMD GPUs using any AMD GPU devices that supports OpenCL.
  • 🔸 Integrated support for Simple Multi-Algorithm. Always mine most profitable algorithm.
  • 🔸 Integrated benchmarking tool. Run it only once before you start mining and after every hardware/driver/software upgrade.
  • 🔸 Watch-feature - automatically restart miner if crashed or hanged.
  • 🔸 Much more..[/sup]

Screenshots GUI SmartMinerPRO SMP:


How to start

1. Download "SmartMinerPRO"
2. Unpack the archive
3. Run "SmartMinerPRO.exe"

IMPORTANT! For your mining equipment, you must install the necessary dependencies. Since each miner program has its own requirements for work. For reference, you can refer to the root directory in the miner’s folder.

System requirements

! OS Support: Windows (32/64 bit).

    - WINDOWS XP,7,8,10 or later (x64)
    - CPU (x64/x86/ARM) For CPU mining a modern CPU with SSE2 support
    - OpenCL for AMD GPUs. For AMD mining any AMD GPU with OpenCL support
    - CUDA for NVIDIA GPUs. For NVIDIA mining any NVIDIA GPU with Compute capability (SM) 3.0 or newer
    - up-to-date patches for OS
    - up-to-date drivers for all GPUs
    - Reliable internet connectivity

Note: .NET Framework 4.8 or higher and Microsoft Visual C++ Redistributable 2015 are required. No additional installations should be needed if you use Windows 7 or later. However, if you encounter any issues when starting application (application would fail to start or errors/warnings about missing DLL files are displayed) you should download and install Microsoft .NET Framework 4.8 and Microsoft Visual C++ Redistributable 2015 (vcredist_x64.exe) (after installation a reboot might be required).

    - Microsoft .NET Framework 4.8: https://dotnet.microsoft.com/download/dotnet-framework/thank-you/net48-web-installer
    - Microsoft Visual C++ Redistributable 2015: https://www.microsoft.com/en-us/download/details.aspx?id=48145

Full list Support miners SmartMinerPRO:

    + bminer
    + ccminer
    + Nanominer
    + Claymore
    + cpuminer-opt
    + cpuminer-GR
    + CryptoDredge
    + ethminer
    + EWB
    + Gminer
    + cgminer
    + sgminer
    + wildrig-multi  
    + kawpowminer
    + lolMiner
    + miniZ
    + NBMiner
    + PhoenixMiner
    + Progpowminer
    + SRBMiner-CN
    + SRBMiner-Multi
    + TeamRedMiner
    + TeamBlackMiner
    + T-Rex Miner
    + TT-Miner
    + xmrig
    + xmr-stak
    + xmr-stak-rx
    + z-enemy

! Please note that the list of supported miners will be expanded with subsequent versions of the SMP

How to use SmartMinerPRO

1. At the first launch of SMP, select the coin to be mined • Optionally, you can choose what equipment will be used, according to the standard, all available CPU / GPUs are used.
2. Click "Start mining", in the mining parameters window, select the miner and the finished .bat file (coins \ pool) • By default, safe recommended settings for increased profitability of mining are used.
3. You can edit the .bat file to replace the wallet and pool values with your own by pressing the "EDIT" button. • If desired, you can replace the parameters of the request, for this we recommend that you refer to the practical guide in the root folders of the miners.
4. After replacing the values of the wallet and pool with yours, click "RUN"
5. Then begins the extraction of coins

Release Note:

v1.3.1

Add Miners and Updates:
+ teamredminer v0.10.0
+ SRBMiner-MULTI GPU & CPU Miner 0.9.6
+ lolMiner 1.51a
+ GMiner v2.99
+ PhoenixMiner 6.2c
+ T-Rex 0.26.4
+ NBMiner v42.2
+ Nanominer v3.6.3
+ TeamBlackMinerv 1.63

v1.3.0

Add Miners & Update:
+ GMiner 2.96
+ TRM 0.10.0
+ T-Rex 0.26.1
+ xmrig-6.7.0
+ cpuminer-opt-3.19.7
+ lolminer 1.51

Updates Notes SMP:
Check generated DAG, a warning at very high GPU overclocking for Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock GPU without errors
checking Shares on CPU, a warning when the GPU is overclocked too high for the Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock the GPU without errors
DAG caching, if the GPU has enough memory, DAG files are not recalculated when switching to another algorithm when mining Ethash + Zilliqa or Nicehash, which has a positive impact on user profitability
auto-selection of optimal cores for each device on Ethash, Etcash, KAWPOW
ability to manually select the core on each device for Ethash, Etcash
GPU temperature control and shutdown in case of overheating
watchdog - a process-watchdog that monitors the state of key systems of the miner, and will restart the miner if it crashes or hangs
Mechanism to recover lost connections to the pool
Failover support - the Miner uses failover pools until the connection to the main pool is restored
support for secure connections
SOCKS5 proxy support
informative and readable display of tabular statistics on the console
detailed information per device (temperature, power consumption, load on the cooler, memory frequency, CPU frequency, power efficiency)
parallel output of the information to the console and to a file on the disk
built-in statistics server - remote monitoring of the miner in a web browser
memory settings for Nvidia GPUs with GDDR5X and GDDR5 memory
Overclocking core clock, memory clock, core voltage, memory voltage, fan speed, power limit for Windows
Safe DAG generation for Nvidia GPUs
auto fan speed control to achieve target temperatures

v1.1.2

+Updates miner plugins:
bminer-v14.1.0
CryptoDredge_0.23.0
ccminer-2.3.1
Claymore_v15.0
cpuminer-opt-3.12.4
ethminer 0.19.0
EWB_v0.6
gminer_2_55
kawpowminer-1.2.3
lolMiner_v1.28a
miniZ_v1.5t2_cuda10
NBMiner_37.5
PhoenixMiner_5.6c
SRBMiner-CN-V1-9-3
SRBMiner-Multi-0-7.5
teamredminer-0.8.3
T-Rex 0.20.3
TT-Miner 6.1.0
xmrig-6.6.1
xmr-stak-2.10.8
z-enemy 2.5

v1.0.1
SMP is a smart multi-currency cryptocurrency miner for CPU / GPU / ASIC / FPGA. Which itself finds the available equipment and selects the optimal settings. SMP + allows you to connect / disconnect / stop / start one or more farms in one click. During the initial start-up, in the “Quick Start” step, you can select a separate algorithm for each farm.


Command line options

Network:

--no-cpu                  disable CPU mining backend
-o, --url=URL                 URL of mining server
-a, --algo=ALGO               mining algorithm
  --coin=COIN               specify coin instead of algorithm
  -u, --user=USERNAME           username for mining server
  -p, --pass=PASSWORD           password for mining server
  -O, --userpass=U:P            username:password pair for mining server
  -x, --proxy=HOST:PORT         connect through a SOCKS5 proxy
  -k, --keepalive               send keepalive packet for prevent timeout (needs pool support)
  --nicehash                enable nicehash.com support
  --rig-id=ID               rig identifier for pool-side statistics (needs pool support)
  --tls                     enable SSL/TLS support (needs pool support)
  --tls-fingerprint=HEX     pool TLS certificate fingerprint for strict certificate pinning
  --daemon                  use daemon RPC instead of pool for solo mining
  --daemon-poll-interval=N  daemon poll interval in milliseconds (default: 1000)
  -r, --retries=N               number of times to retry before switch to backup server (default: 5)
  -R, --retry-pause=N           time to pause between retries (default: 5)
  --user-agent              set custom user-agent string for pool
  --donate-level=N          donate level, default %% (5 minutes in 100 minutes)
  --donate-over-proxy=N     control donate over xmrig-proxy feature


CPU backend:

--no-cpu                  disable CPU mining backend
  -t, --threads=N               number of CPU threads
  -v, --av=N                    algorithm variation, 0 auto select
  --cpu-affinity            set process affinity to CPU core(s), mask 0x3 for cores 0 and 1
  --cpu-priority            set process priority (0 idle, 2 normal to 5 highest)
  --cpu-max-threads-hint=N  maximum CPU threads count (in percentage) hint for autoconfig
  --cpu-memory-pool=N       number of 2 MB pages for persistent memory pool, -1 (auto), 0 (disable)
  --cpu-no-yield            prefer maximum hashrate rather than system response/stability
  --no-huge-pages           disable huge pages support
  --asm=ASM                 ASM optimizations, possible values: auto, none, intel, ryzen, bulldozer
  --randomx-init=N          thread count to initialize RandomX dataset
  --randomx-no-numa         disable NUMA support for RandomX
  --randomx-mode=MODE       RandomX mode: auto, fast, light
  --randomx-1gb-pages       use 1GB hugepages for dataset (Linux only)
  --randomx-wrmsr=N         write custom value (0-15) to Intel MSR register 0x1a4 or disable MSR mod (-1)
  --randomx-no-rdmsr        disable reverting initial MSR values on exit
  --astrobwt-max-size=N     skip hashes with large stage 2 size, default: 550, min: 400, max: 1200
  --astrobwt-avx2           enable AVX2 optimizations for AstroBWT algorithm


API:

--api-worker-id=ID        custom worker-id for API
  --api-id=ID               custom instance ID for API
  --http-host=HOST          bind host for HTTP API (default: 127.0.0.1)
  --http-port=N             bind port for HTTP API
  --http-access-token=T     access token for HTTP API
  --http-no-restricted      enable full remote access to HTTP API (only if access token set)



OpenCL backend:

--opencl                  enable OpenCL mining backend
  --opencl-devices=N        comma separated list of OpenCL devices to use
  --opencl-platform=N       OpenCL platform index or name
  --opencl-loader=PATH      path to OpenCL-ICD-Loader (OpenCL.dll or libOpenCL.so)
  --opencl-no-cache         disable OpenCL cache
  --print-platforms         print available OpenCL platforms and exit


CUDA backend:

--cuda                    enable CUDA mining backend
  --cuda-loader=PATH        path to CUDA plugin (xmrig-cuda.dll or libxmrig-cuda.so)
  --cuda-devices=N          comma separated list of CUDA devices to use
  --cuda-bfactor-hint=N     bfactor hint for autoconfig (0-12)
  --cuda-bsleep-hint=N      bsleep hint for autoconfig
  --no-nvml                 disable NVML (NVIDIA Management Library) support


TLS:

--tls-gen=HOSTNAME        generate TLS certificate for specific hostname
  --tls-cert=FILE           load TLS certificate chain from a file in the PEM format
  --tls-cert-key=FILE       load TLS certificate private key from a file in the PEM format
  --tls-dhparam=FILE        load DH parameters for DHE ciphers from a file in the PEM format
  --tls-protocols=N         enable specified TLS protocols, example: "TLSv1 TLSv1.1 TLSv1.2 TLSv1.3"
  --tls-ciphers=S           set list of available ciphers (TLSv1.2 and below)
  --tls-ciphersuites=S      set list of available TLSv1.3 ciphersuites


Logging:

-S, --syslog                  use system log for output messages
-l, --log-file=FILE           log all output to a file
  --print-time=N            print hashrate report every N seconds
  --health-print-time=N     print health report every N seconds
  --no-color                disable colored output
  --verbose                 verbose output


Misc:

-c, --config=FILE             load a JSON-format configuration file
-B, --background              run the miner in the background
-V, --version                 output version information and exit
-h, --help                    display this help and exit
  --dry-run                 test configuration and exit
  --export-topology         export hwloc topology to a XML file and exit
  --title                   set custom console window title
  --no-title                disable setting console window title
 

DONATE:

BTC BTC: bc1qmpdug4lkkz4kvw2gnrfx9hjgclcge9ytq0z0wl
$ ETH: 0xd5533d796302DA0Ec67a34eBB0Ba432B164a1CA5
$ XMR: 8BFHZwHteLf46VhuXdw9t8h3oEm1ajFxPeNdLLKsnLZjS5EJQL1dJpSCdYFAzty2S2UYd8G86YvioXL b3yXfPLVvN71u1XK
$ RVN: RV8Tz58pZ6Q6fFn5LGGN8hQsUoPzJC1vMi
$ LTC: ltc1q2c68a8spxap6j3nhjk09rem6zf75rahgu7s0gh




Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO (SMP) - GUI multi crypto mining panel for CPU/GPU/ASIC/FPGA
by
mi6ee
on 29/06/2022, 17:16:56 UTC
How to start ERGO with autolykos2 ? Thanks !

Hello. See an example of a complete file for ERGO, if you use the nanominer

[autolykos].
wallet = 9nm1BNYKN8FMKmYKsqPvQJ6ffKar4bKuhJsr9LJt3x9Z6fiqKo7
rigName = rig1
email = someemail@org
pool1 = ergo-eu1.nanopool.org:11433
pool2 = ergo-us-east1.nanopool.org:11433
pool3 = ergo-us-west1.nanopool.org:11433
pool4 = ergo-eu2.nanopool.org:11433
pool5 = ergo-asia1.nanopool.org:11433
pool6 = ergo-jp1.nanopool.org:11433
pool7 = ergo-au1.nanopool.org:11433

If you have any questions or issues, we're happy to help

Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO (SMP) - GUI multi crypto mining panel for CPU/GPU/ASIC/FPGA
by
mi6ee
on 08/06/2022, 07:07:36 UTC
SmartMinerPRO v1.3.1 available for download:

Changes and Updates:
+ teamredminer v0.9.4.6
+ SRBMiner-MULTI GPU & CPU Miner 0.9.6
+ lolMiner 1.51a
+ GMiner v2.99
+ PhoenixMiner 6.2c
+ T-Rex 0.26.4
+ NBMiner v42.2
+ Nanominer v3.6.3
+ TeamBlackMinerv 1.63

SmartMinerPRO (SMP) - GUI multi crypto mining panel for CPU/GPU/ASIC/FPGA

SmartMinerPRO (SMP) is a software product developed by SmartMiner.PRO with a simple and convenient GUI. This version of SMP was created to work with each cryptocurrency based on these algorithms, including Bitcoin. Ethereum, Ethereum Classic, Sumocoin, Grin, Monero, Ravencoin and many others. This version of SMP runs on Windows with CPUs and GPUs AMD or Nvidia and ASIC/FPGA.

! OS Support: Windows (32/64 bit).
 + WebSite SmartMinerPRO: http://smartminer.pro/
 + Official github developer: https://github.com/MiningSoftware/SmartMinerPRO
 + DOWNLOAD LINKS: https://github.com/MiningSoftware/SmartMinerPRO/releases
 + Bitcointalk: https://bitcointalk.org/index.php?topic=5401073.0

DevFee

SmartMinerPRO (SMP) is completely free software. This does not apply to built-in programs for mining (miners).

Key Features SMP:

  • 💎 Built-in miners: XMR-STAK & XMRIG, GMINER. T-REX, TeamRedMiner, CGMiner, T-Rex, NBMiner, Nanominer, PhoenixMiner, CCMiner, miniz, cpu miner, cpuminer-opt, Kadena Miner, Kawpowminer and many others.
  • 🖥 Works on all versions of Windows
  • 📊 Over 50 of the best mining puols
  • ℹ️ Complete information about each currency with links  
  • 📈 CoinGecko price and coin statistics
  • 📊 Coin mining statistics from Cryptunit
  • ♻️ CPU & GPU Mining
  • 🔸 Easy to use
  • 🔸 Easy installation of other miners and .bat configuration files.
  • 🔸 To start mining using SMP +, just enter your wallet in the .bat file of the selected miner
  • 🔸 SMP + has demonstrated high performance when working with Bitcoin, Ethereum, Ethereum Classic, Monero, Raven and other currencies, stands out for its high stability and easy setup.
  • 🔸 Easy one-click CPU mining for CPUs that support at least SSE2 (only works on Windows x64).
  • 🔸 Easy one-click GPU mining for NVIDIA GPUs using microarchitecture (compute capability) SM 3.0+.
  • 🔸 Easy one-click GPU mining for AMD GPUs using any AMD GPU devices that supports OpenCL.
  • 🔸 Integrated support for Simple Multi-Algorithm. Always mine most profitable algorithm.
  • 🔸 Integrated benchmarking tool. Run it only once before you start mining and after every hardware/driver/software upgrade.
  • 🔸 Watch-feature - automatically restart miner if crashed or hanged.
  • 🔸 Much more..[/sup]

Screenshots GUI SmartMinerPRO SMP:


How to start

1. Download "SmartMinerPRO"
2. Unpack the archive
3. Run "SmartMinerPRO.exe"

IMPORTANT! For your mining equipment, you must install the necessary dependencies. Since each miner program has its own requirements for work. For reference, you can refer to the root directory in the miner’s folder.

System requirements

    WINDOWS XP,7,8,10 or later (x64)
    CPU (x64/x86/ARM) For CPU mining a modern CPU with SSE2 support
    OpenCL for AMD GPUs. For AMD mining any AMD GPU with OpenCL support
    CUDA for NVIDIA GPUs. For NVIDIA mining any NVIDIA GPU with Compute capability (SM) 3.0 or newer
    up-to-date patches for OS
    up-to-date drivers for all GPUs
    Reliable internet connectivity

Note: .NET Framework 4.8 or higher and Microsoft Visual C++ Redistributable 2015 are required. No additional installations should be needed if you use Windows 7 or later. However, if you encounter any issues when starting application (application would fail to start or errors/warnings about missing DLL files are displayed) you should download and install Microsoft .NET Framework 4.8 and Microsoft Visual C++ Redistributable 2015 (vcredist_x64.exe) (after installation a reboot might be required).

    - Microsoft .NET Framework 4.8: https://dotnet.microsoft.com/download/dotnet-framework/thank-you/net48-web-installer
    - Microsoft Visual C++ Redistributable 2015: https://www.microsoft.com/en-us/download/details.aspx?id=48145

Full list Support miners SmartMinerPRO:

    + bminer
    + ccminer
    + Nanominer
    + Claymore
    + cpuminer-opt
    + cpuminer-GR
    + CryptoDredge
    + ethminer
    + EWB
    + Gminer
    + cgminer
    + sgminer
    + wildrig-multi  
    + kawpowminer
    + lolMiner
    + miniZ
    + NBMiner
    + PhoenixMiner
    + Progpowminer
    + SRBMiner-CN
    + SRBMiner-Multi
    + TeamRedMiner
    + T-Rex Miner
    + TT-Miner
    + xmrig
    + xmr-stak
    + xmr-stak-rx
    + z-enemy

! Please note that the list of supported miners will be expanded with subsequent versions of the SMP

How to use SmartMinerPRO

1. At the first launch of SMP, select the coin to be mined • Optionally, you can choose what equipment will be used, according to the standard, all available CPU / GPUs are used.
2. Click "Start mining", in the mining parameters window, select the miner and the finished .bat file (coins \ pool) • By default, safe recommended settings for increased profitability of mining are used.
3. You can edit the .bat file to replace the wallet and pool values with your own by pressing the "EDIT" button. • If desired, you can replace the parameters of the request, for this we recommend that you refer to the practical guide in the root folders of the miners.
4. After replacing the values of the wallet and pool with yours, click "RUN"
5. Then begins the extraction of coins

Release Note:

v1.3.0

Add Miners & Update:

+ GMiner 2.96
+ TRM 0.10.0
+ T-Rex 0.26.1
+ xmrig-6.7.0
+ cpuminer-opt-3.19.7
+ lolminer 1.51

Updates SMP:

Check generated DAG, a warning at very high GPU overclocking for Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock GPU without errors
checking Shares on CPU, a warning when the GPU is overclocked too high for the Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock the GPU without errors
DAG caching, if the GPU has enough memory, DAG files are not recalculated when switching to another algorithm when mining Ethash + Zilliqa or Nicehash, which has a positive impact on user profitability
auto-selection of optimal cores for each device on Ethash, Etcash, KAWPOW
ability to manually select the core on each device for Ethash, Etcash
GPU temperature control and shutdown in case of overheating
watchdog - a process-watchdog that monitors the state of key systems of the miner, and will restart the miner if it crashes or hangs
Mechanism to recover lost connections to the pool
Failover support - the Miner uses failover pools until the connection to the main pool is restored
support for secure connections
SOCKS5 proxy support
informative and readable display of tabular statistics on the console
detailed information per device (temperature, power consumption, load on the cooler, memory frequency, CPU frequency, power efficiency)
parallel output of the information to the console and to a file on the disk
built-in statistics server - remote monitoring of the miner in a web browser
memory settings for Nvidia GPUs with GDDR5X and GDDR5 memory
Overclocking core clock, memory clock, core voltage, memory voltage, fan speed, power limit for Windows
Safe DAG generation for Nvidia GPUs
auto fan speed control to achieve target temperatures

v1.1.2

+Updates miner plugins:

bminer-v14.1.0
CryptoDredge_0.23.0
ccminer-2.3.1
Claymore_v15.0
cpuminer-opt-3.12.4
ethminer 0.19.0
EWB_v0.6
gminer_2_55
kawpowminer-1.2.3
lolMiner_v1.28a
miniZ_v1.5t2_cuda10
NBMiner_37.5
PhoenixMiner_5.6c
SRBMiner-CN-V1-9-3
SRBMiner-Multi-0-7.5
teamredminer-0.8.3
T-Rex 0.20.3
TT-Miner 6.1.0
xmrig-6.6.1
xmr-stak-2.10.8
z-enemy 2.5

v1.0.1 SMP is a smart multi-currency cryptocurrency miner for CPU / GPU / ASIC / FPGA. Which itself finds the available equipment and selects the optimal settings. SMP + allows you to connect / disconnect / stop / start one or more farms in one click. During the initial start-up, in the “Quick Start” step, you can select a separate algorithm for each farm.


Command line options

Network:

--no-cpu                  disable CPU mining backend
-o, --url=URL                 URL of mining server
-a, --algo=ALGO               mining algorithm
  --coin=COIN               specify coin instead of algorithm
  -u, --user=USERNAME           username for mining server
  -p, --pass=PASSWORD           password for mining server
  -O, --userpass=U:P            username:password pair for mining server
  -x, --proxy=HOST:PORT         connect through a SOCKS5 proxy
  -k, --keepalive               send keepalive packet for prevent timeout (needs pool support)
  --nicehash                enable nicehash.com support
  --rig-id=ID               rig identifier for pool-side statistics (needs pool support)
  --tls                     enable SSL/TLS support (needs pool support)
  --tls-fingerprint=HEX     pool TLS certificate fingerprint for strict certificate pinning
  --daemon                  use daemon RPC instead of pool for solo mining
  --daemon-poll-interval=N  daemon poll interval in milliseconds (default: 1000)
  -r, --retries=N               number of times to retry before switch to backup server (default: 5)
  -R, --retry-pause=N           time to pause between retries (default: 5)
  --user-agent              set custom user-agent string for pool
  --donate-level=N          donate level, default %% (5 minutes in 100 minutes)
  --donate-over-proxy=N     control donate over xmrig-proxy feature


CPU backend:

--no-cpu                  disable CPU mining backend
  -t, --threads=N               number of CPU threads
  -v, --av=N                    algorithm variation, 0 auto select
  --cpu-affinity            set process affinity to CPU core(s), mask 0x3 for cores 0 and 1
  --cpu-priority            set process priority (0 idle, 2 normal to 5 highest)
  --cpu-max-threads-hint=N  maximum CPU threads count (in percentage) hint for autoconfig
  --cpu-memory-pool=N       number of 2 MB pages for persistent memory pool, -1 (auto), 0 (disable)
  --cpu-no-yield            prefer maximum hashrate rather than system response/stability
  --no-huge-pages           disable huge pages support
  --asm=ASM                 ASM optimizations, possible values: auto, none, intel, ryzen, bulldozer
  --randomx-init=N          thread count to initialize RandomX dataset
  --randomx-no-numa         disable NUMA support for RandomX
  --randomx-mode=MODE       RandomX mode: auto, fast, light
  --randomx-1gb-pages       use 1GB hugepages for dataset (Linux only)
  --randomx-wrmsr=N         write custom value (0-15) to Intel MSR register 0x1a4 or disable MSR mod (-1)
  --randomx-no-rdmsr        disable reverting initial MSR values on exit
  --astrobwt-max-size=N     skip hashes with large stage 2 size, default: 550, min: 400, max: 1200
  --astrobwt-avx2           enable AVX2 optimizations for AstroBWT algorithm


API:

--api-worker-id=ID        custom worker-id for API
  --api-id=ID               custom instance ID for API
  --http-host=HOST          bind host for HTTP API (default: 127.0.0.1)
  --http-port=N             bind port for HTTP API
  --http-access-token=T     access token for HTTP API
  --http-no-restricted      enable full remote access to HTTP API (only if access token set)



OpenCL backend:

--opencl                  enable OpenCL mining backend
  --opencl-devices=N        comma separated list of OpenCL devices to use
  --opencl-platform=N       OpenCL platform index or name
  --opencl-loader=PATH      path to OpenCL-ICD-Loader (OpenCL.dll or libOpenCL.so)
  --opencl-no-cache         disable OpenCL cache
  --print-platforms         print available OpenCL platforms and exit


CUDA backend:

--cuda                    enable CUDA mining backend
  --cuda-loader=PATH        path to CUDA plugin (xmrig-cuda.dll or libxmrig-cuda.so)
  --cuda-devices=N          comma separated list of CUDA devices to use
  --cuda-bfactor-hint=N     bfactor hint for autoconfig (0-12)
  --cuda-bsleep-hint=N      bsleep hint for autoconfig
  --no-nvml                 disable NVML (NVIDIA Management Library) support


TLS:

--tls-gen=HOSTNAME        generate TLS certificate for specific hostname
  --tls-cert=FILE           load TLS certificate chain from a file in the PEM format
  --tls-cert-key=FILE       load TLS certificate private key from a file in the PEM format
  --tls-dhparam=FILE        load DH parameters for DHE ciphers from a file in the PEM format
  --tls-protocols=N         enable specified TLS protocols, example: "TLSv1 TLSv1.1 TLSv1.2 TLSv1.3"
  --tls-ciphers=S           set list of available ciphers (TLSv1.2 and below)
  --tls-ciphersuites=S      set list of available TLSv1.3 ciphersuites


Logging:

-S, --syslog                  use system log for output messages
-l, --log-file=FILE           log all output to a file
  --print-time=N            print hashrate report every N seconds
  --health-print-time=N     print health report every N seconds
  --no-color                disable colored output
  --verbose                 verbose output


Misc:

-c, --config=FILE             load a JSON-format configuration file
-B, --background              run the miner in the background
-V, --version                 output version information and exit
-h, --help                    display this help and exit
  --dry-run                 test configuration and exit
  --export-topology         export hwloc topology to a XML file and exit
  --title                   set custom console window title
  --no-title                disable setting console window title
 

DONATE:

BTC BTC: bc1qmpdug4lkkz4kvw2gnrfx9hjgclcge9ytq0z0wl
$ ETH: 0xd5533d796302DA0Ec67a34eBB0Ba432B164a1CA5
$ XMR: 8BFHZwHteLf46VhuXdw9t8h3oEm1ajFxPeNdLLKsnLZjS5EJQL1dJpSCdYFAzty2S2UYd8G86YvioXL b3yXfPLVvN71u1XK
$ RVN: RV8Tz58pZ6Q6fFn5LGGN8hQsUoPzJC1vMi
$ LTC: ltc1q2c68a8spxap6j3nhjk09rem6zf75rahgu7s0gh
Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO (SMP/SMP+) - multi crypto mining panel for AMD & NVIDIA
by
mi6ee
on 05/06/2022, 17:43:27 UTC
To mine a BEAM coin, you need to install a miner that can run on the appropriate algorithm. I recommend you to install Bminer and lolminer. Try to experiment with each of them, SMP was designed for this very purpose, to make it convenient for users to use multiple mining software. Have a great hunt!

I would like to mine Beam with this miner. May I know what are the overclock settings should I do for my RX580 8GB cards to get the most sols? Like how much core, memory, voltage and etc? Would like to know the efficient way to mine for this card for BEAM. THanks
Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO (SMP/SMP+) - multi crypto mining panel for AMD & NVIDIA
by
mi6ee
on 05/06/2022, 17:38:37 UTC
Thank you for using our creation! Have fun mining!  Wink

Thanks man. Awesome.

Asus RTX 2070 Strix OC is doing ~ 8.3 G/s @ 137W
Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO (SMP/SMP+) - multi crypto mining panel for AMD & NVIDIA
by
mi6ee
on 05/06/2022, 17:36:56 UTC
how do I set up backup pools? need to create a separate file? give the file setup

You can set up backup pools in certain miners, read how to do that in the manual of the miner you are using.
Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO (SMP) - multi crypto mining panel for CPU/GPU/ASIC/FPGA
by
mi6ee
on 05/06/2022, 17:33:32 UTC
Support for "TeamBlackMiner" was added in the recent SMP release, in order to mine with this miner, simply download it and add it to the "Miners" folder

Team Black Miner has only a 0.5% commission... is it supported? If not, can you add it?

SmartMinerPRO (SMP+) - Multi crypto mining panel for CPU/GPU/ASIC/FPGA

SMP+ is a software product developed by SmartMiner.PRO with a simple and convenient GUI. This version of SMP + was created to work with each cryptocurrency based on these algorithms, including Bitcoin. Ethereum, Ethereum Classic, Sumocoin, Grin, Monero, Ravencoin and many others. This version of SMP + runs on Windows with CPUs and GPUs AMD or Nvidia and ASIC/FPGA.

! OS Support: Windows (32/64 bit).

 + Official github developer: https://github.com/MiningSoftware/SmartMinerPRO
 + DOWNLOAD LINKS: https://github.com/MiningSoftware/SmartMinerPRO/releases

DevFee

SmartMinerPRO (SMP / SMP +) is completely free software. This does not apply to built-in programs for mining (miners).

Key Features SMP:

  • 💎 Built-in miners: XMR-STAK & XMRIG, GMINER. T-REX, TeamRedMiner, CGMiner, T-Rex, NBMiner, Nanominer, PhoenixMiner, CCMiner, miniz, cpu miner, cpuminer-opt, Kadena Miner, Kawpowminer and many others.
  • 🖥 Works on all versions of Windows
  • 📊 Over 50 of the best mining puols
  • ℹ️ Complete information about each currency with links  
  • 📈 CoinGecko price and coin statistics
  • 📊 Coin mining statistics from Cryptunit
  • ♻️ CPU & GPU Mining
  • 🔸 Easy to use
  • 🔸 Easy installation of other miners and .bat configuration files.
  • 🔸 To start mining using SMP +, just enter your wallet in the .bat file of the selected miner
  • 🔸 SMP + has demonstrated high performance when working with Bitcoin, Ethereum, Ethereum Classic, Monero, Raven and other currencies, stands out for its high stability and easy setup.
  • 🔸 Easy one-click CPU mining for CPUs that support at least SSE2 (only works on Windows x64).
  • 🔸 Easy one-click GPU mining for NVIDIA GPUs using microarchitecture (compute capability) SM 3.0+.
  • 🔸 Easy one-click GPU mining for AMD GPUs using any AMD GPU devices that supports OpenCL.
  • 🔸 Integrated support for Simple Multi-Algorithm. Always mine most profitable algorithm.
  • 🔸 Integrated benchmarking tool. Run it only once before you start mining and after every hardware/driver/software upgrade.
  • 🔸 Watch-feature - automatically restart miner if crashed or hanged.
  • 🔸 Much more..[/sup]

Screenshots GUI SMP+:


How to start

1. Download "SmartMinerPRO"
2. Unpack the archive
3. Run "SmartMinerPRO.exe"

IMPORTANT! For your mining equipment, you must install the necessary dependencies. Since each miner program has its own requirements for work. For reference, you can refer to the root directory in the miner’s folder.

System requirements

    WINDOWS XP,7,8,10 or later (x64)
    CPU (x64/x86/ARM) For CPU mining a modern CPU with SSE2 support
    OpenCL for AMD GPUs. For AMD mining any AMD GPU with OpenCL support
    CUDA for NVIDIA GPUs. For NVIDIA mining any NVIDIA GPU with Compute capability (SM) 3.0 or newer
    up-to-date patches for OS
    up-to-date drivers for all GPUs
    Reliable internet connectivity

Note: .NET Framework 4.8 or higher and Microsoft Visual C++ Redistributable 2015 are required. No additional installations should be needed if you use Windows 7 or later. However, if you encounter any issues when starting application (application would fail to start or errors/warnings about missing DLL files are displayed) you should download and install Microsoft .NET Framework 4.8 and Microsoft Visual C++ Redistributable 2015 (vcredist_x64.exe) (after installation a reboot might be required).

    Microsoft .NET Framework 4.8: https://dotnet.microsoft.com/download/dotnet-framework/thank-you/net48-web-installer
    Microsoft Visual C++ Redistributable 2015: https://www.microsoft.com/en-us/download/details.aspx?id=48145

Full list Support miners SMP+:

    + bminer
    + ccminer
    + Nanominer
    + Claymore
    + cpuminer-opt
    + cpuminer-GR
    + CryptoDredge
    + ethminer
    + EWB
    + Gminer
    + cgminer
    + sgminer
    + wildrig-multi  
    + kawpowminer
    + lolMiner
    + miniZ
    + NBMiner
    + PhoenixMiner
    + Progpowminer
    + SRBMiner-CN
    + SRBMiner-Multi
    + TeamRedMiner
    + T-Rex Miner
    + TT-Miner
    + xmrig
    + xmr-stak
    + xmr-stak-rx
    + z-enemy

! Please note that the list of supported miners will be expanded with subsequent versions of the SMP +

How to use SMP

1. At the first launch of SMP, select the coin to be mined • Optionally, you can choose what equipment will be used, according to the standard, all available CPU / GPUs are used.
2. Click "Start mining", in the mining parameters window, select the miner and the finished .bat file (coins \ pool) • By default, safe recommended settings for increased profitability of mining are used.
3. You can edit the .bat file to replace the wallet and pool values with your own by pressing the "EDIT" button. • If desired, you can replace the parameters of the request, for this we recommend that you refer to the practical guide in the root folders of the miners.
4. After replacing the values of the wallet and pool with yours, click "RUN"
5. Then begins the extraction of coins

Release Note:

v1.3.0

Add Miners & Update:

+ GMiner 2.96
+ TRM 0.10.0
+ T-Rex 0.26.1
+ xmrig-6.7.0
+ cpuminer-opt-3.19.7
+ lolminer 1.51

Updates SMP:

Check generated DAG, a warning at very high GPU overclocking for Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock GPU without errors
checking Shares on CPU, a warning when the GPU is overclocked too high for the Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock the GPU without errors
DAG caching, if the GPU has enough memory, DAG files are not recalculated when switching to another algorithm when mining Ethash + Zilliqa or Nicehash, which has a positive impact on user profitability
auto-selection of optimal cores for each device on Ethash, Etcash, KAWPOW
ability to manually select the core on each device for Ethash, Etcash
GPU temperature control and shutdown in case of overheating
watchdog - a process-watchdog that monitors the state of key systems of the miner, and will restart the miner if it crashes or hangs
Mechanism to recover lost connections to the pool
Failover support - the Miner uses failover pools until the connection to the main pool is restored
support for secure connections
SOCKS5 proxy support
informative and readable display of tabular statistics on the console
detailed information per device (temperature, power consumption, load on the cooler, memory frequency, CPU frequency, power efficiency)
parallel output of the information to the console and to a file on the disk
built-in statistics server - remote monitoring of the miner in a web browser
memory settings for Nvidia GPUs with GDDR5X and GDDR5 memory
Overclocking core clock, memory clock, core voltage, memory voltage, fan speed, power limit for Windows
Safe DAG generation for Nvidia GPUs
auto fan speed control to achieve target temperatures

v1.1.2

+Updates miner plugins:

bminer-v14.1.0
CryptoDredge_0.23.0
ccminer-2.3.1
Claymore_v15.0
cpuminer-opt-3.12.4
ethminer 0.19.0
EWB_v0.6
gminer_2_55
kawpowminer-1.2.3
lolMiner_v1.28a
miniZ_v1.5t2_cuda10
NBMiner_37.5
PhoenixMiner_5.6c
SRBMiner-CN-V1-9-3
SRBMiner-Multi-0-7.5
teamredminer-0.8.3
T-Rex 0.20.3
TT-Miner 6.1.0
xmrig-6.6.1
xmr-stak-2.10.8
z-enemy 2.5

v1.0.1 SMP is a smart multi-currency cryptocurrency miner for CPU / GPU / ASIC / FPGA. Which itself finds the available equipment and selects the optimal settings. SMP + allows you to connect / disconnect / stop / start one or more farms in one click. During the initial start-up, in the “Quick Start” step, you can select a separate algorithm for each farm.


Command line options

Network:

--no-cpu                  disable CPU mining backend
-o, --url=URL                 URL of mining server
-a, --algo=ALGO               mining algorithm
  --coin=COIN               specify coin instead of algorithm
  -u, --user=USERNAME           username for mining server
  -p, --pass=PASSWORD           password for mining server
  -O, --userpass=U:P            username:password pair for mining server
  -x, --proxy=HOST:PORT         connect through a SOCKS5 proxy
  -k, --keepalive               send keepalive packet for prevent timeout (needs pool support)
  --nicehash                enable nicehash.com support
  --rig-id=ID               rig identifier for pool-side statistics (needs pool support)
  --tls                     enable SSL/TLS support (needs pool support)
  --tls-fingerprint=HEX     pool TLS certificate fingerprint for strict certificate pinning
  --daemon                  use daemon RPC instead of pool for solo mining
  --daemon-poll-interval=N  daemon poll interval in milliseconds (default: 1000)
  -r, --retries=N               number of times to retry before switch to backup server (default: 5)
  -R, --retry-pause=N           time to pause between retries (default: 5)
  --user-agent              set custom user-agent string for pool
  --donate-level=N          donate level, default %% (5 minutes in 100 minutes)
  --donate-over-proxy=N     control donate over xmrig-proxy feature


CPU backend:

--no-cpu                  disable CPU mining backend
  -t, --threads=N               number of CPU threads
  -v, --av=N                    algorithm variation, 0 auto select
  --cpu-affinity            set process affinity to CPU core(s), mask 0x3 for cores 0 and 1
  --cpu-priority            set process priority (0 idle, 2 normal to 5 highest)
  --cpu-max-threads-hint=N  maximum CPU threads count (in percentage) hint for autoconfig
  --cpu-memory-pool=N       number of 2 MB pages for persistent memory pool, -1 (auto), 0 (disable)
  --cpu-no-yield            prefer maximum hashrate rather than system response/stability
  --no-huge-pages           disable huge pages support
  --asm=ASM                 ASM optimizations, possible values: auto, none, intel, ryzen, bulldozer
  --randomx-init=N          thread count to initialize RandomX dataset
  --randomx-no-numa         disable NUMA support for RandomX
  --randomx-mode=MODE       RandomX mode: auto, fast, light
  --randomx-1gb-pages       use 1GB hugepages for dataset (Linux only)
  --randomx-wrmsr=N         write custom value (0-15) to Intel MSR register 0x1a4 or disable MSR mod (-1)
  --randomx-no-rdmsr        disable reverting initial MSR values on exit
  --astrobwt-max-size=N     skip hashes with large stage 2 size, default: 550, min: 400, max: 1200
  --astrobwt-avx2           enable AVX2 optimizations for AstroBWT algorithm


API:

--api-worker-id=ID        custom worker-id for API
  --api-id=ID               custom instance ID for API
  --http-host=HOST          bind host for HTTP API (default: 127.0.0.1)
  --http-port=N             bind port for HTTP API
  --http-access-token=T     access token for HTTP API
  --http-no-restricted      enable full remote access to HTTP API (only if access token set)



OpenCL backend:

--opencl                  enable OpenCL mining backend
  --opencl-devices=N        comma separated list of OpenCL devices to use
  --opencl-platform=N       OpenCL platform index or name
  --opencl-loader=PATH      path to OpenCL-ICD-Loader (OpenCL.dll or libOpenCL.so)
  --opencl-no-cache         disable OpenCL cache
  --print-platforms         print available OpenCL platforms and exit


CUDA backend:

--cuda                    enable CUDA mining backend
  --cuda-loader=PATH        path to CUDA plugin (xmrig-cuda.dll or libxmrig-cuda.so)
  --cuda-devices=N          comma separated list of CUDA devices to use
  --cuda-bfactor-hint=N     bfactor hint for autoconfig (0-12)
  --cuda-bsleep-hint=N      bsleep hint for autoconfig
  --no-nvml                 disable NVML (NVIDIA Management Library) support


TLS:

--tls-gen=HOSTNAME        generate TLS certificate for specific hostname
  --tls-cert=FILE           load TLS certificate chain from a file in the PEM format
  --tls-cert-key=FILE       load TLS certificate private key from a file in the PEM format
  --tls-dhparam=FILE        load DH parameters for DHE ciphers from a file in the PEM format
  --tls-protocols=N         enable specified TLS protocols, example: "TLSv1 TLSv1.1 TLSv1.2 TLSv1.3"
  --tls-ciphers=S           set list of available ciphers (TLSv1.2 and below)
  --tls-ciphersuites=S      set list of available TLSv1.3 ciphersuites


Logging:

-S, --syslog                  use system log for output messages
-l, --log-file=FILE           log all output to a file
  --print-time=N            print hashrate report every N seconds
  --health-print-time=N     print health report every N seconds
  --no-color                disable colored output
  --verbose                 verbose output


Misc:

-c, --config=FILE             load a JSON-format configuration file
-B, --background              run the miner in the background
-V, --version                 output version information and exit
-h, --help                    display this help and exit
  --dry-run                 test configuration and exit
  --export-topology         export hwloc topology to a XML file and exit
  --title                   set custom console window title
  --no-title                disable setting console window title
 

DONATE:

BTC BTC: bc1qmpdug4lkkz4kvw2gnrfx9hjgclcge9ytq0z0wl
$ ETH: 0xd5533d796302DA0Ec67a34eBB0Ba432B164a1CA5
$ XMR: 8BFHZwHteLf46VhuXdw9t8h3oEm1ajFxPeNdLLKsnLZjS5EJQL1dJpSCdYFAzty2S2UYd8G86YvioXL b3yXfPLVvN71u1XK
$ RVN: RV8Tz58pZ6Q6fFn5LGGN8hQsUoPzJC1vMi
$ LTC: ltc1q2c68a8spxap6j3nhjk09rem6zf75rahgu7s0gh
Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO (SMP) - GUI multi crypto mining panel for CPU/GPU/ASIC/FPGA
by
mi6ee
on 05/06/2022, 17:30:04 UTC
in SMP you can put almost any miner, any version, including miners working on cockutoo/cuckaroo, equihash 150.5, lyra2z330 algorithms. Just add needed miner to "Miners" folder, set your configuration file via SMP GUI and click "run".

Hi! How about to add cockutoo/cuckaroo, peach and equihash 150,5, lyra2z330 algos for cpu and gpu?

SmartMinerPRO (SMP) - GUI multi crypto mining panel for CPU/GPU/ASIC/FPGA

SmartMinerPRO (SMP) is a software product developed by SmartMiner.PRO with a simple and convenient GUI. This version of SMP was created to work with each cryptocurrency based on these algorithms, including Bitcoin. Ethereum, Ethereum Classic, Sumocoin, Grin, Monero, Ravencoin and many others. This version of SMP runs on Windows with CPUs and GPUs AMD or Nvidia and ASIC/FPGA.

! OS Support: Windows (32/64 bit).
 + WebSite SmartMinerPRO: http://smartminer.pro/
 + Official github developer: https://github.com/MiningSoftware/SmartMinerPRO
 + DOWNLOAD LINKS: https://github.com/MiningSoftware/SmartMinerPRO/releases
 + Bitcointalk: https://bitcointalk.org/index.php?topic=5401073.0

DevFee

SmartMinerPRO (SMP) is completely free software. This does not apply to built-in programs for mining (miners).

Key Features SMP:

  • 💎 Built-in miners: XMR-STAK & XMRIG, GMINER. T-REX, TeamRedMiner, CGMiner, T-Rex, NBMiner, Nanominer, PhoenixMiner, CCMiner, miniz, cpu miner, cpuminer-opt, Kadena Miner, Kawpowminer and many others.
  • 🖥 Works on all versions of Windows
  • 📊 Over 50 of the best mining puols
  • ℹ️ Complete information about each currency with links  
  • 📈 CoinGecko price and coin statistics
  • 📊 Coin mining statistics from Cryptunit
  • ♻️ CPU & GPU Mining
  • 🔸 Easy to use
  • 🔸 Easy installation of other miners and .bat configuration files.
  • 🔸 To start mining using SMP +, just enter your wallet in the .bat file of the selected miner
  • 🔸 SMP + has demonstrated high performance when working with Bitcoin, Ethereum, Ethereum Classic, Monero, Raven and other currencies, stands out for its high stability and easy setup.
  • 🔸 Easy one-click CPU mining for CPUs that support at least SSE2 (only works on Windows x64).
  • 🔸 Easy one-click GPU mining for NVIDIA GPUs using microarchitecture (compute capability) SM 3.0+.
  • 🔸 Easy one-click GPU mining for AMD GPUs using any AMD GPU devices that supports OpenCL.
  • 🔸 Integrated support for Simple Multi-Algorithm. Always mine most profitable algorithm.
  • 🔸 Integrated benchmarking tool. Run it only once before you start mining and after every hardware/driver/software upgrade.
  • 🔸 Watch-feature - automatically restart miner if crashed or hanged.
  • 🔸 Much more..[/sup]

Screenshots GUI SmartMinerPRO SMP:


How to start

1. Download "SmartMinerPRO"
2. Unpack the archive
3. Run "SmartMinerPRO.exe"

IMPORTANT! For your mining equipment, you must install the necessary dependencies. Since each miner program has its own requirements for work. For reference, you can refer to the root directory in the miner’s folder.

System requirements

    WINDOWS XP,7,8,10 or later (x64)
    CPU (x64/x86/ARM) For CPU mining a modern CPU with SSE2 support
    OpenCL for AMD GPUs. For AMD mining any AMD GPU with OpenCL support
    CUDA for NVIDIA GPUs. For NVIDIA mining any NVIDIA GPU with Compute capability (SM) 3.0 or newer
    up-to-date patches for OS
    up-to-date drivers for all GPUs
    Reliable internet connectivity

Note: .NET Framework 4.8 or higher and Microsoft Visual C++ Redistributable 2015 are required. No additional installations should be needed if you use Windows 7 or later. However, if you encounter any issues when starting application (application would fail to start or errors/warnings about missing DLL files are displayed) you should download and install Microsoft .NET Framework 4.8 and Microsoft Visual C++ Redistributable 2015 (vcredist_x64.exe) (after installation a reboot might be required).

    - Microsoft .NET Framework 4.8: https://dotnet.microsoft.com/download/dotnet-framework/thank-you/net48-web-installer
    - Microsoft Visual C++ Redistributable 2015: https://www.microsoft.com/en-us/download/details.aspx?id=48145

Full list Support miners SmartMinerPRO:

    + bminer
    + ccminer
    + Nanominer
    + Claymore
    + cpuminer-opt
    + cpuminer-GR
    + CryptoDredge
    + ethminer
    + EWB
    + Gminer
    + cgminer
    + sgminer
    + wildrig-multi  
    + kawpowminer
    + lolMiner
    + miniZ
    + NBMiner
    + PhoenixMiner
    + Progpowminer
    + SRBMiner-CN
    + SRBMiner-Multi
    + TeamRedMiner
    + T-Rex Miner
    + TT-Miner
    + xmrig
    + xmr-stak
    + xmr-stak-rx
    + z-enemy

! Please note that the list of supported miners will be expanded with subsequent versions of the SMP

How to use SmartMinerPRO

1. At the first launch of SMP, select the coin to be mined • Optionally, you can choose what equipment will be used, according to the standard, all available CPU / GPUs are used.
2. Click "Start mining", in the mining parameters window, select the miner and the finished .bat file (coins \ pool) • By default, safe recommended settings for increased profitability of mining are used.
3. You can edit the .bat file to replace the wallet and pool values with your own by pressing the "EDIT" button. • If desired, you can replace the parameters of the request, for this we recommend that you refer to the practical guide in the root folders of the miners.
4. After replacing the values of the wallet and pool with yours, click "RUN"
5. Then begins the extraction of coins

Release Note:

v1.3.0

Add Miners & Update:

+ GMiner 2.96
+ TRM 0.10.0
+ T-Rex 0.26.1
+ xmrig-6.7.0
+ cpuminer-opt-3.19.7
+ lolminer 1.51

Updates SMP:

Check generated DAG, a warning at very high GPU overclocking for Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock GPU without errors
checking Shares on CPU, a warning when the GPU is overclocked too high for the Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock the GPU without errors
DAG caching, if the GPU has enough memory, DAG files are not recalculated when switching to another algorithm when mining Ethash + Zilliqa or Nicehash, which has a positive impact on user profitability
auto-selection of optimal cores for each device on Ethash, Etcash, KAWPOW
ability to manually select the core on each device for Ethash, Etcash
GPU temperature control and shutdown in case of overheating
watchdog - a process-watchdog that monitors the state of key systems of the miner, and will restart the miner if it crashes or hangs
Mechanism to recover lost connections to the pool
Failover support - the Miner uses failover pools until the connection to the main pool is restored
support for secure connections
SOCKS5 proxy support
informative and readable display of tabular statistics on the console
detailed information per device (temperature, power consumption, load on the cooler, memory frequency, CPU frequency, power efficiency)
parallel output of the information to the console and to a file on the disk
built-in statistics server - remote monitoring of the miner in a web browser
memory settings for Nvidia GPUs with GDDR5X and GDDR5 memory
Overclocking core clock, memory clock, core voltage, memory voltage, fan speed, power limit for Windows
Safe DAG generation for Nvidia GPUs
auto fan speed control to achieve target temperatures

v1.1.2

+Updates miner plugins:

bminer-v14.1.0
CryptoDredge_0.23.0
ccminer-2.3.1
Claymore_v15.0
cpuminer-opt-3.12.4
ethminer 0.19.0
EWB_v0.6
gminer_2_55
kawpowminer-1.2.3
lolMiner_v1.28a
miniZ_v1.5t2_cuda10
NBMiner_37.5
PhoenixMiner_5.6c
SRBMiner-CN-V1-9-3
SRBMiner-Multi-0-7.5
teamredminer-0.8.3
T-Rex 0.20.3
TT-Miner 6.1.0
xmrig-6.6.1
xmr-stak-2.10.8
z-enemy 2.5

v1.0.1 SMP is a smart multi-currency cryptocurrency miner for CPU / GPU / ASIC / FPGA. Which itself finds the available equipment and selects the optimal settings. SMP + allows you to connect / disconnect / stop / start one or more farms in one click. During the initial start-up, in the “Quick Start” step, you can select a separate algorithm for each farm.


Command line options

Network:

--no-cpu                  disable CPU mining backend
-o, --url=URL                 URL of mining server
-a, --algo=ALGO               mining algorithm
  --coin=COIN               specify coin instead of algorithm
  -u, --user=USERNAME           username for mining server
  -p, --pass=PASSWORD           password for mining server
  -O, --userpass=U:P            username:password pair for mining server
  -x, --proxy=HOST:PORT         connect through a SOCKS5 proxy
  -k, --keepalive               send keepalive packet for prevent timeout (needs pool support)
  --nicehash                enable nicehash.com support
  --rig-id=ID               rig identifier for pool-side statistics (needs pool support)
  --tls                     enable SSL/TLS support (needs pool support)
  --tls-fingerprint=HEX     pool TLS certificate fingerprint for strict certificate pinning
  --daemon                  use daemon RPC instead of pool for solo mining
  --daemon-poll-interval=N  daemon poll interval in milliseconds (default: 1000)
  -r, --retries=N               number of times to retry before switch to backup server (default: 5)
  -R, --retry-pause=N           time to pause between retries (default: 5)
  --user-agent              set custom user-agent string for pool
  --donate-level=N          donate level, default %% (5 minutes in 100 minutes)
  --donate-over-proxy=N     control donate over xmrig-proxy feature


CPU backend:

--no-cpu                  disable CPU mining backend
  -t, --threads=N               number of CPU threads
  -v, --av=N                    algorithm variation, 0 auto select
  --cpu-affinity            set process affinity to CPU core(s), mask 0x3 for cores 0 and 1
  --cpu-priority            set process priority (0 idle, 2 normal to 5 highest)
  --cpu-max-threads-hint=N  maximum CPU threads count (in percentage) hint for autoconfig
  --cpu-memory-pool=N       number of 2 MB pages for persistent memory pool, -1 (auto), 0 (disable)
  --cpu-no-yield            prefer maximum hashrate rather than system response/stability
  --no-huge-pages           disable huge pages support
  --asm=ASM                 ASM optimizations, possible values: auto, none, intel, ryzen, bulldozer
  --randomx-init=N          thread count to initialize RandomX dataset
  --randomx-no-numa         disable NUMA support for RandomX
  --randomx-mode=MODE       RandomX mode: auto, fast, light
  --randomx-1gb-pages       use 1GB hugepages for dataset (Linux only)
  --randomx-wrmsr=N         write custom value (0-15) to Intel MSR register 0x1a4 or disable MSR mod (-1)
  --randomx-no-rdmsr        disable reverting initial MSR values on exit
  --astrobwt-max-size=N     skip hashes with large stage 2 size, default: 550, min: 400, max: 1200
  --astrobwt-avx2           enable AVX2 optimizations for AstroBWT algorithm


API:

--api-worker-id=ID        custom worker-id for API
  --api-id=ID               custom instance ID for API
  --http-host=HOST          bind host for HTTP API (default: 127.0.0.1)
  --http-port=N             bind port for HTTP API
  --http-access-token=T     access token for HTTP API
  --http-no-restricted      enable full remote access to HTTP API (only if access token set)



OpenCL backend:

--opencl                  enable OpenCL mining backend
  --opencl-devices=N        comma separated list of OpenCL devices to use
  --opencl-platform=N       OpenCL platform index or name
  --opencl-loader=PATH      path to OpenCL-ICD-Loader (OpenCL.dll or libOpenCL.so)
  --opencl-no-cache         disable OpenCL cache
  --print-platforms         print available OpenCL platforms and exit


CUDA backend:

--cuda                    enable CUDA mining backend
  --cuda-loader=PATH        path to CUDA plugin (xmrig-cuda.dll or libxmrig-cuda.so)
  --cuda-devices=N          comma separated list of CUDA devices to use
  --cuda-bfactor-hint=N     bfactor hint for autoconfig (0-12)
  --cuda-bsleep-hint=N      bsleep hint for autoconfig
  --no-nvml                 disable NVML (NVIDIA Management Library) support


TLS:

--tls-gen=HOSTNAME        generate TLS certificate for specific hostname
  --tls-cert=FILE           load TLS certificate chain from a file in the PEM format
  --tls-cert-key=FILE       load TLS certificate private key from a file in the PEM format
  --tls-dhparam=FILE        load DH parameters for DHE ciphers from a file in the PEM format
  --tls-protocols=N         enable specified TLS protocols, example: "TLSv1 TLSv1.1 TLSv1.2 TLSv1.3"
  --tls-ciphers=S           set list of available ciphers (TLSv1.2 and below)
  --tls-ciphersuites=S      set list of available TLSv1.3 ciphersuites


Logging:

-S, --syslog                  use system log for output messages
-l, --log-file=FILE           log all output to a file
  --print-time=N            print hashrate report every N seconds
  --health-print-time=N     print health report every N seconds
  --no-color                disable colored output
  --verbose                 verbose output


Misc:

-c, --config=FILE             load a JSON-format configuration file
-B, --background              run the miner in the background
-V, --version                 output version information and exit
-h, --help                    display this help and exit
  --dry-run                 test configuration and exit
  --export-topology         export hwloc topology to a XML file and exit
  --title                   set custom console window title
  --no-title                disable setting console window title
 

DONATE:

BTC BTC: bc1qmpdug4lkkz4kvw2gnrfx9hjgclcge9ytq0z0wl
$ ETH: 0xd5533d796302DA0Ec67a34eBB0Ba432B164a1CA5
$ XMR: 8BFHZwHteLf46VhuXdw9t8h3oEm1ajFxPeNdLLKsnLZjS5EJQL1dJpSCdYFAzty2S2UYd8G86YvioXL b3yXfPLVvN71u1XK
$ RVN: RV8Tz58pZ6Q6fFn5LGGN8hQsUoPzJC1vMi
$ LTC: ltc1q2c68a8spxap6j3nhjk09rem6zf75rahgu7s0gh
Post
Topic
Board Mining software (miners)
Topic OP
SmartMinerPRO (SMP) - multi crypto mining panel for CPU/GPU/ASIC/FPGA
by
mi6ee
on 02/06/2022, 07:09:07 UTC
SmartMinerPRO (SMP+) - Multi crypto mining panel for  CPU/GPU/ASIC/FPGA

SMP+ is a software product developed by SmartMiner.PRO with a simple and convenient GUI. This version of SMP + was created to work with each cryptocurrency based on these algorithms, including Bitcoin. Ethereum, Ethereum Classic, Sumocoin, Grin, Monero, Ravencoin and many others. This version of SMP + runs on Windows with CPUs and GPUs AMD/Nvidia and ASIC/FPGA.

! OS Support: Windows (32/64 bit).

 + Official github developer: https://github.com/MiningSoftware/SmartMinerPRO
 + DOWNLOAD LINKS: https://github.com/MiningSoftware/SmartMinerPRO/releases

DevFee

SmartMinerPRO is completely free software. This does not apply to built-in programs for mining (miners).

Key Features SMP:

  • 💎 Built-in miners: XMR-STAK & XMRIG, GMINER. T-REX, TeamRedMiner, CGMiner, T-Rex, NBMiner, Nanominer, PhoenixMiner, CCMiner, miniz, cpu miner, cpuminer-opt, Kadena Miner, Kawpowminer and many others.
  • 🖥 Works on all versions of Windows
  • 📊 Over 50 of the best mining puols
  • ℹ️ Complete information about each currency with links   
  • 📈 CoinGecko price and coin statistics
  • 📊 Coin mining statistics from Cryptunit
  • ♻️ CPU & GPU Mining
  • 🔸 Easy to use
  • 🔸 Easy installation of other miners and .bat configuration files.
  • 🔸 To start mining using SMP +, just enter your wallet in the .bat file of the selected miner
  • 🔸 SMP + has demonstrated high performance when working with Bitcoin, Ethereum, Ethereum Classic, Monero, Raven and other currencies, stands out for its high stability and easy setup.
  • 🔸 Easy one-click CPU mining for CPUs that support at least SSE2 (only works on Windows x64).
  • 🔸 Easy one-click GPU mining for NVIDIA GPUs using microarchitecture (compute capability) SM 3.0+.
  • 🔸 Easy one-click GPU mining for AMD GPUs using any AMD GPU devices that supports OpenCL.
  • 🔸 Integrated support for Simple Multi-Algorithm. Always mine most profitable algorithm.
  • 🔸 Integrated benchmarking tool. Run it only once before you start mining and after every hardware/driver/software upgrade.
  • 🔸 Watch-feature - automatically restart miner if crashed or hanged.
  • 🔸 Much more..[/sup]

Screenshots GUI SMP+:


How to start

1. Download "SmartMinerPRO"
2. Unpack the archive
3. Run "SmartMinerPRO.exe"

IMPORTANT! For your mining equipment, you must install the necessary dependencies. Since each miner program has its own requirements for work. For reference, you can refer to the root directory in the miner’s folder.

System requirements

    WINDOWS XP,7,8,10 or later (x64)
    CPU (x64/x86/ARM) For CPU mining a modern CPU with SSE2 support
    OpenCL for AMD GPUs. For AMD mining any AMD GPU with OpenCL support
    CUDA for NVIDIA GPUs. For NVIDIA mining any NVIDIA GPU with Compute capability (SM) 3.0 or newer
    up-to-date patches for OS
    up-to-date drivers for all GPUs
    Reliable internet connectivity

Note: .NET Framework 4.8 or higher and Microsoft Visual C++ Redistributable 2015 are required. No additional installations should be needed if you use Windows 7 or later. However, if you encounter any issues when starting application (application would fail to start or errors/warnings about missing DLL files are displayed) you should download and install Microsoft .NET Framework 4.8 and Microsoft Visual C++ Redistributable 2015 (vcredist_x64.exe) (after installation a reboot might be required).

    Microsoft .NET Framework 4.8: https://dotnet.microsoft.com/download/dotnet-framework/thank-you/net48-web-installer
    Microsoft Visual C++ Redistributable 2015: https://www.microsoft.com/en-us/download/details.aspx?id=48145

Full list Support miners SMP+:

    + bminer
    + ccminer
    + Nanominer
    + Claymore
    + cpuminer-opt
    + cpuminer-GR
    + CryptoDredge
    + ethminer
    + EWB
    + Gminer
    + cgminer
    + sgminer
    + wildrig-multi 
    + kawpowminer
    + lolMiner
    + miniZ
    + NBMiner
    + PhoenixMiner
    + Progpowminer
    + SRBMiner-CN
    + SRBMiner-Multi
    + TeamRedMiner
    + T-Rex Miner
    + TT-Miner
    + xmrig
    + xmr-stak
    + xmr-stak-rx
    + z-enemy

! Please note that the list of supported miners will be expanded with subsequent versions of the SMP +

How to use SMP

1. At the first launch of SMP, select the coin to be mined • Optionally, you can choose what equipment will be used, according to the standard, all available CPU / GPUs are used.
2. Click "Start mining", in the mining parameters window, select the miner and the finished .bat file (coins \ pool) • By default, safe recommended settings for increased profitability of mining are used.
3. You can edit the .bat file to replace the wallet and pool values with your own by pressing the "EDIT" button. • If desired, you can replace the parameters of the request, for this we recommend that you refer to the practical guide in the root folders of the miners.
4. After replacing the values of the wallet and pool with yours, click "RUN"
5. Then begins the extraction of coins

Release Note:

v1.3.0

Add Miners & Update:

+ GMiner 2.96
+ TRM 0.10.0
+ T-Rex 0.26.1
+ xmrig-6.7.0
+ cpuminer-opt-3.19.7
+ lolminer 1.51

Updates SMP:

Check generated DAG, a warning at very high GPU overclocking for Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock GPU without errors
checking Shares on CPU, a warning when the GPU is overclocked too high for the Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock the GPU without errors
DAG caching, if the GPU has enough memory, DAG files are not recalculated when switching to another algorithm when mining Ethash + Zilliqa or Nicehash, which has a positive impact on user profitability
auto-selection of optimal cores for each device on Ethash, Etcash, KAWPOW
ability to manually select the core on each device for Ethash, Etcash
GPU temperature control and shutdown in case of overheating
watchdog - a process-watchdog that monitors the state of key systems of the miner, and will restart the miner if it crashes or hangs
Mechanism to recover lost connections to the pool
Failover support - the Miner uses failover pools until the connection to the main pool is restored
support for secure connections
SOCKS5 proxy support
informative and readable display of tabular statistics on the console
detailed information per device (temperature, power consumption, load on the cooler, memory frequency, CPU frequency, power efficiency)
parallel output of the information to the console and to a file on the disk
built-in statistics server - remote monitoring of the miner in a web browser
memory settings for Nvidia GPUs with GDDR5X and GDDR5 memory
Overclocking core clock, memory clock, core voltage, memory voltage, fan speed, power limit for Windows
Safe DAG generation for Nvidia GPUs
auto fan speed control to achieve target temperatures

v1.1.2

+Updates miner plugins:

bminer-v14.1.0
CryptoDredge_0.23.0
ccminer-2.3.1
Claymore_v15.0
cpuminer-opt-3.12.4
ethminer 0.19.0
EWB_v0.6
gminer_2_55
kawpowminer-1.2.3
lolMiner_v1.28a
miniZ_v1.5t2_cuda10
NBMiner_37.5
PhoenixMiner_5.6c
SRBMiner-CN-V1-9-3
SRBMiner-Multi-0-7.5
teamredminer-0.8.3
T-Rex 0.20.3
TT-Miner 6.1.0
xmrig-6.6.1
xmr-stak-2.10.8
z-enemy 2.5

v1.0.1 SMP is a smart multi-currency cryptocurrency miner for CPU / GPU / ASIC / FPGA. Which itself finds the available equipment and selects the optimal settings. SMP + allows you to connect / disconnect / stop / start one or more farms in one click. During the initial start-up, in the “Quick Start” step, you can select a separate algorithm for each farm.


Command line options

Network:

--no-cpu                  disable CPU mining backend
-o, --url=URL                 URL of mining server
-a, --algo=ALGO               mining algorithm
  --coin=COIN               specify coin instead of algorithm
  -u, --user=USERNAME           username for mining server
  -p, --pass=PASSWORD           password for mining server
  -O, --userpass=U:P            username:password pair for mining server
  -x, --proxy=HOST:PORT         connect through a SOCKS5 proxy
  -k, --keepalive               send keepalive packet for prevent timeout (needs pool support)
  --nicehash                enable nicehash.com support
  --rig-id=ID               rig identifier for pool-side statistics (needs pool support)
  --tls                     enable SSL/TLS support (needs pool support)
  --tls-fingerprint=HEX     pool TLS certificate fingerprint for strict certificate pinning
  --daemon                  use daemon RPC instead of pool for solo mining
  --daemon-poll-interval=N  daemon poll interval in milliseconds (default: 1000)
  -r, --retries=N               number of times to retry before switch to backup server (default: 5)
  -R, --retry-pause=N           time to pause between retries (default: 5)
  --user-agent              set custom user-agent string for pool
  --donate-level=N          donate level, default %% (5 minutes in 100 minutes)
  --donate-over-proxy=N     control donate over xmrig-proxy feature


CPU backend:

--no-cpu                  disable CPU mining backend
  -t, --threads=N               number of CPU threads
  -v, --av=N                    algorithm variation, 0 auto select
  --cpu-affinity            set process affinity to CPU core(s), mask 0x3 for cores 0 and 1
  --cpu-priority            set process priority (0 idle, 2 normal to 5 highest)
  --cpu-max-threads-hint=N  maximum CPU threads count (in percentage) hint for autoconfig
  --cpu-memory-pool=N       number of 2 MB pages for persistent memory pool, -1 (auto), 0 (disable)
  --cpu-no-yield            prefer maximum hashrate rather than system response/stability
  --no-huge-pages           disable huge pages support
  --asm=ASM                 ASM optimizations, possible values: auto, none, intel, ryzen, bulldozer
  --randomx-init=N          thread count to initialize RandomX dataset
  --randomx-no-numa         disable NUMA support for RandomX
  --randomx-mode=MODE       RandomX mode: auto, fast, light
  --randomx-1gb-pages       use 1GB hugepages for dataset (Linux only)
  --randomx-wrmsr=N         write custom value (0-15) to Intel MSR register 0x1a4 or disable MSR mod (-1)
  --randomx-no-rdmsr        disable reverting initial MSR values on exit
  --astrobwt-max-size=N     skip hashes with large stage 2 size, default: 550, min: 400, max: 1200
  --astrobwt-avx2           enable AVX2 optimizations for AstroBWT algorithm


API:

--api-worker-id=ID        custom worker-id for API
  --api-id=ID               custom instance ID for API
  --http-host=HOST          bind host for HTTP API (default: 127.0.0.1)
  --http-port=N             bind port for HTTP API
  --http-access-token=T     access token for HTTP API
  --http-no-restricted      enable full remote access to HTTP API (only if access token set)



OpenCL backend:

--opencl                  enable OpenCL mining backend
  --opencl-devices=N        comma separated list of OpenCL devices to use
  --opencl-platform=N       OpenCL platform index or name
  --opencl-loader=PATH      path to OpenCL-ICD-Loader (OpenCL.dll or libOpenCL.so)
  --opencl-no-cache         disable OpenCL cache
  --print-platforms         print available OpenCL platforms and exit


CUDA backend:

--cuda                    enable CUDA mining backend
  --cuda-loader=PATH        path to CUDA plugin (xmrig-cuda.dll or libxmrig-cuda.so)
  --cuda-devices=N          comma separated list of CUDA devices to use
  --cuda-bfactor-hint=N     bfactor hint for autoconfig (0-12)
  --cuda-bsleep-hint=N      bsleep hint for autoconfig
  --no-nvml                 disable NVML (NVIDIA Management Library) support


TLS:

--tls-gen=HOSTNAME        generate TLS certificate for specific hostname
  --tls-cert=FILE           load TLS certificate chain from a file in the PEM format
  --tls-cert-key=FILE       load TLS certificate private key from a file in the PEM format
  --tls-dhparam=FILE        load DH parameters for DHE ciphers from a file in the PEM format
  --tls-protocols=N         enable specified TLS protocols, example: "TLSv1 TLSv1.1 TLSv1.2 TLSv1.3"
  --tls-ciphers=S           set list of available ciphers (TLSv1.2 and below)
  --tls-ciphersuites=S      set list of available TLSv1.3 ciphersuites


Logging:

-S, --syslog                  use system log for output messages
-l, --log-file=FILE           log all output to a file
  --print-time=N            print hashrate report every N seconds
  --health-print-time=N     print health report every N seconds
  --no-color                disable colored output
  --verbose                 verbose output


Misc:

-c, --config=FILE             load a JSON-format configuration file
-B, --background              run the miner in the background
-V, --version                 output version information and exit
-h, --help                    display this help and exit
  --dry-run                 test configuration and exit
  --export-topology         export hwloc topology to a XML file and exit
  --title                   set custom console window title
  --no-title                disable setting console window title
   

DONATE:

BTC BTC: bc1qmpdug4lkkz4kvw2gnrfx9hjgclcge9ytq0z0wl
$ ETH: 0xd5533d796302DA0Ec67a34eBB0Ba432B164a1CA5
$ XMR: 8BFHZwHteLf46VhuXdw9t8h3oEm1ajFxPeNdLLKsnLZjS5EJQL1dJpSCdYFAzty2S2UYd8G86YvioXL b3yXfPLVvN71u1XK
$ RVN: RV8Tz58pZ6Q6fFn5LGGN8hQsUoPzJC1vMi
$ LTC: ltc1q2c68a8spxap6j3nhjk09rem6zf75rahgu7s0gh
Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO (SMP/SMP+) - multi crypto mining panel for AMD & NVIDIA
by
mi6ee
on 25/05/2022, 07:33:52 UTC
SmartMinerPRO (SMP+) - Multi crypto mining panel for AMD & NVIDIA & ASIC & FPGA

SMP+ is a software product developed by SmartMiner.PRO with a simple and convenient GUI. This version of SMP + was created to work with each cryptocurrency based on these algorithms, including Bitcoin. Ethereum, Ethereum Classic, Sumocoin, Grin, Monero, Ravencoin and many others. This version of SMP + runs on Windows with AMD CPUs and GPUs or Nvidia and ASIC / FPGA.

! OS Support: Windows (32/64 bit).

 + Official github developer: https://github.com/MiningSoftware/SmartMinerPRO
 + DOWNLOAD LINKS: https://github.com/MiningSoftware/SmartMinerPRO/releases

DevFee

SmartMinerPRO (SMP / SMP +) is completely free software. This does not apply to built-in programs for mining (miners).

Key Features SMP:

  • 💎 Built-in miners: XMR-STAK & XMRIG, GMINER. T-REX, TeamRedMiner, CGMiner, T-Rex, NBMiner, Nanominer, PhoenixMiner, CCMiner, miniz, cpu miner, cpuminer-opt, Kadena Miner, Kawpowminer and many others.
  • 🖥 Works on all versions of Windows
  • 📊 Over 50 of the best mining puols
  • ℹ️ Complete information about each currency with links  
  • 📈 CoinGecko price and coin statistics
  • 📊 Coin mining statistics from Cryptunit
  • ♻️ CPU & GPU Mining
  • 🔸 Easy to use
  • 🔸 Easy installation of other miners and .bat configuration files.
  • 🔸 To start mining using SMP +, just enter your wallet in the .bat file of the selected miner
  • 🔸 SMP + has demonstrated high performance when working with Bitcoin, Ethereum, Ethereum Classic, Monero, Raven and other currencies, stands out for its high stability and easy setup.
  • 🔸 Easy one-click CPU mining for CPUs that support at least SSE2 (only works on Windows x64).
  • 🔸 Easy one-click GPU mining for NVIDIA GPUs using microarchitecture (compute capability) SM 3.0+.
  • 🔸 Easy one-click GPU mining for AMD GPUs using any AMD GPU devices that supports OpenCL.
  • 🔸 Integrated support for Simple Multi-Algorithm. Always mine most profitable algorithm.
  • 🔸 Integrated benchmarking tool. Run it only once before you start mining and after every hardware/driver/software upgrade.
  • 🔸 Watch-feature - automatically restart miner if crashed or hanged.
  • 🔸 Much more..[/sup]

Screenshots GUI SMP+:


How to start

1. Download "SmartMinerPRO"
2. Unpack the archive
3. Run "SmartMinerPRO.exe"

IMPORTANT! For your mining equipment, you must install the necessary dependencies. Since each miner program has its own requirements for work. For reference, you can refer to the root directory in the miner’s folder.

System requirements

    WINDOWS XP,7,8,10 or later (x64)
    CPU (x64/x86/ARM) For CPU mining a modern CPU with SSE2 support
    OpenCL for AMD GPUs. For AMD mining any AMD GPU with OpenCL support
    CUDA for NVIDIA GPUs. For NVIDIA mining any NVIDIA GPU with Compute capability (SM) 3.0 or newer
    up-to-date patches for OS
    up-to-date drivers for all GPUs
    Reliable internet connectivity

Note: .NET Framework 4.8 or higher and Microsoft Visual C++ Redistributable 2015 are required. No additional installations should be needed if you use Windows 7 or later. However, if you encounter any issues when starting application (application would fail to start or errors/warnings about missing DLL files are displayed) you should download and install Microsoft .NET Framework 4.8 and Microsoft Visual C++ Redistributable 2015 (vcredist_x64.exe) (after installation a reboot might be required).

    Microsoft .NET Framework 4.8: https://dotnet.microsoft.com/download/dotnet-framework/thank-you/net48-web-installer
    Microsoft Visual C++ Redistributable 2015: https://www.microsoft.com/en-us/download/details.aspx?id=48145

Full list Support miners SMP+:

    + bminer
    + ccminer
    + Nanominer
    + Claymore
    + cpuminer-opt
    + cpuminer-GR
    + CryptoDredge
    + ethminer
    + EWB
    + Gminer
    + cgminer
    + sgminer
    + wildrig-multi  
    + kawpowminer
    + lolMiner
    + miniZ
    + NBMiner
    + PhoenixMiner
    + Progpowminer
    + SRBMiner-CN
    + SRBMiner-Multi
    + TeamRedMiner
    + T-Rex Miner
    + TT-Miner
    + xmrig
    + xmr-stak
    + xmr-stak-rx
    + z-enemy

! Please note that the list of supported miners will be expanded with subsequent versions of the SMP +

How to use SMP

1. At the first launch of SMP, select the coin to be mined • Optionally, you can choose what equipment will be used, according to the standard, all available CPU / GPUs are used.
2. Click "Start mining", in the mining parameters window, select the miner and the finished .bat file (coins \ pool) • By default, safe recommended settings for increased profitability of mining are used.
3. You can edit the .bat file to replace the wallet and pool values with your own by pressing the "EDIT" button. • If desired, you can replace the parameters of the request, for this we recommend that you refer to the practical guide in the root folders of the miners.
4. After replacing the values of the wallet and pool with yours, click "RUN"
5. Then begins the extraction of coins

Release Note:

v1.3.0

Add Miners & Update:

+ GMiner 2.96
+ TRM 0.10.0
+ T-Rex 0.26.1
+ xmrig-6.7.0
+ cpuminer-opt-3.19.7
+ lolminer 1.51

Updates SMP:

Check generated DAG, a warning at very high GPU overclocking for Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock GPU without errors
checking Shares on CPU, a warning when the GPU is overclocked too high for the Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock the GPU without errors
DAG caching, if the GPU has enough memory, DAG files are not recalculated when switching to another algorithm when mining Ethash + Zilliqa or Nicehash, which has a positive impact on user profitability
auto-selection of optimal cores for each device on Ethash, Etcash, KAWPOW
ability to manually select the core on each device for Ethash, Etcash
GPU temperature control and shutdown in case of overheating
watchdog - a process-watchdog that monitors the state of key systems of the miner, and will restart the miner if it crashes or hangs
Mechanism to recover lost connections to the pool
Failover support - the Miner uses failover pools until the connection to the main pool is restored
support for secure connections
SOCKS5 proxy support
informative and readable display of tabular statistics on the console
detailed information per device (temperature, power consumption, load on the cooler, memory frequency, CPU frequency, power efficiency)
parallel output of the information to the console and to a file on the disk
built-in statistics server - remote monitoring of the miner in a web browser
memory settings for Nvidia GPUs with GDDR5X and GDDR5 memory
Overclocking core clock, memory clock, core voltage, memory voltage, fan speed, power limit for Windows
Safe DAG generation for Nvidia GPUs
auto fan speed control to achieve target temperatures

v1.1.2

+Updates miner plugins:

bminer-v14.1.0
CryptoDredge_0.23.0
ccminer-2.3.1
Claymore_v15.0
cpuminer-opt-3.12.4
ethminer 0.19.0
EWB_v0.6
gminer_2_55
kawpowminer-1.2.3
lolMiner_v1.28a
miniZ_v1.5t2_cuda10
NBMiner_37.5
PhoenixMiner_5.6c
SRBMiner-CN-V1-9-3
SRBMiner-Multi-0-7.5
teamredminer-0.8.3
T-Rex 0.20.3
TT-Miner 6.1.0
xmrig-6.6.1
xmr-stak-2.10.8
z-enemy 2.5

v1.0.1 SMP is a smart multi-currency cryptocurrency miner for CPU / GPU / ASIC / FPGA. Which itself finds the available equipment and selects the optimal settings. SMP + allows you to connect / disconnect / stop / start one or more farms in one click. During the initial start-up, in the “Quick Start” step, you can select a separate algorithm for each farm.


Command line options

Network:

--no-cpu                  disable CPU mining backend
-o, --url=URL                 URL of mining server
-a, --algo=ALGO               mining algorithm
  --coin=COIN               specify coin instead of algorithm
  -u, --user=USERNAME           username for mining server
  -p, --pass=PASSWORD           password for mining server
  -O, --userpass=U:P            username:password pair for mining server
  -x, --proxy=HOST:PORT         connect through a SOCKS5 proxy
  -k, --keepalive               send keepalive packet for prevent timeout (needs pool support)
  --nicehash                enable nicehash.com support
  --rig-id=ID               rig identifier for pool-side statistics (needs pool support)
  --tls                     enable SSL/TLS support (needs pool support)
  --tls-fingerprint=HEX     pool TLS certificate fingerprint for strict certificate pinning
  --daemon                  use daemon RPC instead of pool for solo mining
  --daemon-poll-interval=N  daemon poll interval in milliseconds (default: 1000)
  -r, --retries=N               number of times to retry before switch to backup server (default: 5)
  -R, --retry-pause=N           time to pause between retries (default: 5)
  --user-agent              set custom user-agent string for pool
  --donate-level=N          donate level, default %% (5 minutes in 100 minutes)
  --donate-over-proxy=N     control donate over xmrig-proxy feature


CPU backend:

--no-cpu                  disable CPU mining backend
  -t, --threads=N               number of CPU threads
  -v, --av=N                    algorithm variation, 0 auto select
  --cpu-affinity            set process affinity to CPU core(s), mask 0x3 for cores 0 and 1
  --cpu-priority            set process priority (0 idle, 2 normal to 5 highest)
  --cpu-max-threads-hint=N  maximum CPU threads count (in percentage) hint for autoconfig
  --cpu-memory-pool=N       number of 2 MB pages for persistent memory pool, -1 (auto), 0 (disable)
  --cpu-no-yield            prefer maximum hashrate rather than system response/stability
  --no-huge-pages           disable huge pages support
  --asm=ASM                 ASM optimizations, possible values: auto, none, intel, ryzen, bulldozer
  --randomx-init=N          thread count to initialize RandomX dataset
  --randomx-no-numa         disable NUMA support for RandomX
  --randomx-mode=MODE       RandomX mode: auto, fast, light
  --randomx-1gb-pages       use 1GB hugepages for dataset (Linux only)
  --randomx-wrmsr=N         write custom value (0-15) to Intel MSR register 0x1a4 or disable MSR mod (-1)
  --randomx-no-rdmsr        disable reverting initial MSR values on exit
  --astrobwt-max-size=N     skip hashes with large stage 2 size, default: 550, min: 400, max: 1200
  --astrobwt-avx2           enable AVX2 optimizations for AstroBWT algorithm


API:

--api-worker-id=ID        custom worker-id for API
  --api-id=ID               custom instance ID for API
  --http-host=HOST          bind host for HTTP API (default: 127.0.0.1)
  --http-port=N             bind port for HTTP API
  --http-access-token=T     access token for HTTP API
  --http-no-restricted      enable full remote access to HTTP API (only if access token set)



OpenCL backend:

--opencl                  enable OpenCL mining backend
  --opencl-devices=N        comma separated list of OpenCL devices to use
  --opencl-platform=N       OpenCL platform index or name
  --opencl-loader=PATH      path to OpenCL-ICD-Loader (OpenCL.dll or libOpenCL.so)
  --opencl-no-cache         disable OpenCL cache
  --print-platforms         print available OpenCL platforms and exit


CUDA backend:

--cuda                    enable CUDA mining backend
  --cuda-loader=PATH        path to CUDA plugin (xmrig-cuda.dll or libxmrig-cuda.so)
  --cuda-devices=N          comma separated list of CUDA devices to use
  --cuda-bfactor-hint=N     bfactor hint for autoconfig (0-12)
  --cuda-bsleep-hint=N      bsleep hint for autoconfig
  --no-nvml                 disable NVML (NVIDIA Management Library) support


TLS:

--tls-gen=HOSTNAME        generate TLS certificate for specific hostname
  --tls-cert=FILE           load TLS certificate chain from a file in the PEM format
  --tls-cert-key=FILE       load TLS certificate private key from a file in the PEM format
  --tls-dhparam=FILE        load DH parameters for DHE ciphers from a file in the PEM format
  --tls-protocols=N         enable specified TLS protocols, example: "TLSv1 TLSv1.1 TLSv1.2 TLSv1.3"
  --tls-ciphers=S           set list of available ciphers (TLSv1.2 and below)
  --tls-ciphersuites=S      set list of available TLSv1.3 ciphersuites


Logging:

-S, --syslog                  use system log for output messages
-l, --log-file=FILE           log all output to a file
  --print-time=N            print hashrate report every N seconds
  --health-print-time=N     print health report every N seconds
  --no-color                disable colored output
  --verbose                 verbose output


Misc:

-c, --config=FILE             load a JSON-format configuration file
-B, --background              run the miner in the background
-V, --version                 output version information and exit
-h, --help                    display this help and exit
  --dry-run                 test configuration and exit
  --export-topology         export hwloc topology to a XML file and exit
  --title                   set custom console window title
  --no-title                disable setting console window title
 

DONATE:

BTC BTC: bc1qmpdug4lkkz4kvw2gnrfx9hjgclcge9ytq0z0wl
$ ETH: 0xd5533d796302DA0Ec67a34eBB0Ba432B164a1CA5
$ XMR: 8BFHZwHteLf46VhuXdw9t8h3oEm1ajFxPeNdLLKsnLZjS5EJQL1dJpSCdYFAzty2S2UYd8G86YvioXL b3yXfPLVvN71u1XK
$ RVN: RV8Tz58pZ6Q6fFn5LGGN8hQsUoPzJC1vMi
$ LTC: ltc1q2c68a8spxap6j3nhjk09rem6zf75rahgu7s0gh

Good miner, but not much updates

Hi! Our project is in active development, we try to release updates as needed. at SMP we rely on the stability and reliability of the miner, we do not allow unstable versions of the program. We thoroughly test and check the quality of the product when we release a new program update. Therefore updates are not released as often as we would like, since our project is new and not yet widespread in the community, with your support we will actively develop and implement new features as often and quickly!

Thank you for using our creation!

Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO (SMP/SMP+) - multi crypto mining panel for AMD & NVIDIA
by
mi6ee
on 25/05/2022, 07:24:31 UTC
Hello
Check out example of complete file for ERGO, please

[autolykos]
wallet = 8he6BZYМN8FMKxYKsqPvQJ6fbNar4bWuhJsR9JJt4х9Z6fiqSo1
rigName = rig1
email = someemail@org
pool1 = ergo-eu1.nanopool.org:11433
pool2 = ergo-us-east1.nanopool.org:11433
pool3 = ergo-us-west1.nanopool.org:11433
pool4 = ergo-eu2.nanopool.org:11433
pool5 = ergo-asia1.nanopool.org:11433
pool6 = ergo-jp1.nanopool.org:11433
pool7 = ergo-au1.nanopool.org:11433

If you have any questions or concerns, we are happy to help


How to start ERGO with autolykos2 ?
Thanks !

SmartMinerPRO (SMP+) - Multi crypto mining panel for AMD & NVIDIA & ASIC & FPGA

SMP+ is a software product developed by SmartMiner.PRO with a simple and convenient GUI. This version of SMP + was created to work with each cryptocurrency based on these algorithms, including Bitcoin. Ethereum, Ethereum Classic, Sumocoin, Grin, Monero, Ravencoin and many others. This version of SMP + runs on Windows with AMD CPUs and GPUs or Nvidia and ASIC / FPGA.

! OS Support: Windows (32/64 bit).

 + Official github developer: https://github.com/MiningSoftware/SmartMinerPRO
 + DOWNLOAD LINKS: https://github.com/MiningSoftware/SmartMinerPRO/releases

DevFee

SmartMinerPRO (SMP / SMP +) is completely free software. This does not apply to built-in programs for mining (miners).

Key Features SMP:

  • 💎 Built-in miners: XMR-STAK & XMRIG, GMINER. T-REX, TeamRedMiner, CGMiner, T-Rex, NBMiner, Nanominer, PhoenixMiner, CCMiner, miniz, cpu miner, cpuminer-opt, Kadena Miner, Kawpowminer and many others.
  • 🖥 Works on all versions of Windows
  • 📊 Over 50 of the best mining puols
  • ℹ️ Complete information about each currency with links  
  • 📈 CoinGecko price and coin statistics
  • 📊 Coin mining statistics from Cryptunit
  • ♻️ CPU & GPU Mining
  • 🔸 Easy to use
  • 🔸 Easy installation of other miners and .bat configuration files.
  • 🔸 To start mining using SMP +, just enter your wallet in the .bat file of the selected miner
  • 🔸 SMP + has demonstrated high performance when working with Bitcoin, Ethereum, Ethereum Classic, Monero, Raven and other currencies, stands out for its high stability and easy setup.
  • 🔸 Easy one-click CPU mining for CPUs that support at least SSE2 (only works on Windows x64).
  • 🔸 Easy one-click GPU mining for NVIDIA GPUs using microarchitecture (compute capability) SM 3.0+.
  • 🔸 Easy one-click GPU mining for AMD GPUs using any AMD GPU devices that supports OpenCL.
  • 🔸 Integrated support for Simple Multi-Algorithm. Always mine most profitable algorithm.
  • 🔸 Integrated benchmarking tool. Run it only once before you start mining and after every hardware/driver/software upgrade.
  • 🔸 Watch-feature - automatically restart miner if crashed or hanged.
  • 🔸 Much more..[/sup]

Screenshots GUI SMP+:


How to start

1. Download "SmartMinerPRO"
2. Unpack the archive
3. Run "SmartMinerPRO.exe"

IMPORTANT! For your mining equipment, you must install the necessary dependencies. Since each miner program has its own requirements for work. For reference, you can refer to the root directory in the miner’s folder.

System requirements

    WINDOWS XP,7,8,10 or later (x64)
    CPU (x64/x86/ARM) For CPU mining a modern CPU with SSE2 support
    OpenCL for AMD GPUs. For AMD mining any AMD GPU with OpenCL support
    CUDA for NVIDIA GPUs. For NVIDIA mining any NVIDIA GPU with Compute capability (SM) 3.0 or newer
    up-to-date patches for OS
    up-to-date drivers for all GPUs
    Reliable internet connectivity

Note: .NET Framework 4.8 or higher and Microsoft Visual C++ Redistributable 2015 are required. No additional installations should be needed if you use Windows 7 or later. However, if you encounter any issues when starting application (application would fail to start or errors/warnings about missing DLL files are displayed) you should download and install Microsoft .NET Framework 4.8 and Microsoft Visual C++ Redistributable 2015 (vcredist_x64.exe) (after installation a reboot might be required).

    Microsoft .NET Framework 4.8: https://dotnet.microsoft.com/download/dotnet-framework/thank-you/net48-web-installer
    Microsoft Visual C++ Redistributable 2015: https://www.microsoft.com/en-us/download/details.aspx?id=48145

Full list Support miners SMP+:

    + bminer
    + ccminer
    + Nanominer
    + Claymore
    + cpuminer-opt
    + cpuminer-GR
    + CryptoDredge
    + ethminer
    + EWB
    + Gminer
    + cgminer
    + sgminer
    + wildrig-multi  
    + kawpowminer
    + lolMiner
    + miniZ
    + NBMiner
    + PhoenixMiner
    + Progpowminer
    + SRBMiner-CN
    + SRBMiner-Multi
    + TeamRedMiner
    + T-Rex Miner
    + TT-Miner
    + xmrig
    + xmr-stak
    + xmr-stak-rx
    + z-enemy

! Please note that the list of supported miners will be expanded with subsequent versions of the SMP +

How to use SMP

1. At the first launch of SMP, select the coin to be mined • Optionally, you can choose what equipment will be used, according to the standard, all available CPU / GPUs are used.
2. Click "Start mining", in the mining parameters window, select the miner and the finished .bat file (coins \ pool) • By default, safe recommended settings for increased profitability of mining are used.
3. You can edit the .bat file to replace the wallet and pool values with your own by pressing the "EDIT" button. • If desired, you can replace the parameters of the request, for this we recommend that you refer to the practical guide in the root folders of the miners.
4. After replacing the values of the wallet and pool with yours, click "RUN"
5. Then begins the extraction of coins

Release Note:

v1.3.0

Add Miners & Update:

+ GMiner 2.96
+ TRM 0.10.0
+ T-Rex 0.26.1
+ xmrig-6.7.0
+ cpuminer-opt-3.19.7
+ lolminer 1.51

Updates SMP:

Check generated DAG, a warning at very high GPU overclocking for Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock GPU without errors
checking Shares on CPU, a warning when the GPU is overclocked too high for the Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock the GPU without errors
DAG caching, if the GPU has enough memory, DAG files are not recalculated when switching to another algorithm when mining Ethash + Zilliqa or Nicehash, which has a positive impact on user profitability
auto-selection of optimal cores for each device on Ethash, Etcash, KAWPOW
ability to manually select the core on each device for Ethash, Etcash
GPU temperature control and shutdown in case of overheating
watchdog - a process-watchdog that monitors the state of key systems of the miner, and will restart the miner if it crashes or hangs
Mechanism to recover lost connections to the pool
Failover support - the Miner uses failover pools until the connection to the main pool is restored
support for secure connections
SOCKS5 proxy support
informative and readable display of tabular statistics on the console
detailed information per device (temperature, power consumption, load on the cooler, memory frequency, CPU frequency, power efficiency)
parallel output of the information to the console and to a file on the disk
built-in statistics server - remote monitoring of the miner in a web browser
memory settings for Nvidia GPUs with GDDR5X and GDDR5 memory
Overclocking core clock, memory clock, core voltage, memory voltage, fan speed, power limit for Windows
Safe DAG generation for Nvidia GPUs
auto fan speed control to achieve target temperatures

v1.1.2

+Updates miner plugins:

bminer-v14.1.0
CryptoDredge_0.23.0
ccminer-2.3.1
Claymore_v15.0
cpuminer-opt-3.12.4
ethminer 0.19.0
EWB_v0.6
gminer_2_55
kawpowminer-1.2.3
lolMiner_v1.28a
miniZ_v1.5t2_cuda10
NBMiner_37.5
PhoenixMiner_5.6c
SRBMiner-CN-V1-9-3
SRBMiner-Multi-0-7.5
teamredminer-0.8.3
T-Rex 0.20.3
TT-Miner 6.1.0
xmrig-6.6.1
xmr-stak-2.10.8
z-enemy 2.5

v1.0.1 SMP is a smart multi-currency cryptocurrency miner for CPU / GPU / ASIC / FPGA. Which itself finds the available equipment and selects the optimal settings. SMP + allows you to connect / disconnect / stop / start one or more farms in one click. During the initial start-up, in the “Quick Start” step, you can select a separate algorithm for each farm.


Command line options

Network:

--no-cpu                  disable CPU mining backend
-o, --url=URL                 URL of mining server
-a, --algo=ALGO               mining algorithm
  --coin=COIN               specify coin instead of algorithm
  -u, --user=USERNAME           username for mining server
  -p, --pass=PASSWORD           password for mining server
  -O, --userpass=U:P            username:password pair for mining server
  -x, --proxy=HOST:PORT         connect through a SOCKS5 proxy
  -k, --keepalive               send keepalive packet for prevent timeout (needs pool support)
  --nicehash                enable nicehash.com support
  --rig-id=ID               rig identifier for pool-side statistics (needs pool support)
  --tls                     enable SSL/TLS support (needs pool support)
  --tls-fingerprint=HEX     pool TLS certificate fingerprint for strict certificate pinning
  --daemon                  use daemon RPC instead of pool for solo mining
  --daemon-poll-interval=N  daemon poll interval in milliseconds (default: 1000)
  -r, --retries=N               number of times to retry before switch to backup server (default: 5)
  -R, --retry-pause=N           time to pause between retries (default: 5)
  --user-agent              set custom user-agent string for pool
  --donate-level=N          donate level, default %% (5 minutes in 100 minutes)
  --donate-over-proxy=N     control donate over xmrig-proxy feature


CPU backend:

--no-cpu                  disable CPU mining backend
  -t, --threads=N               number of CPU threads
  -v, --av=N                    algorithm variation, 0 auto select
  --cpu-affinity            set process affinity to CPU core(s), mask 0x3 for cores 0 and 1
  --cpu-priority            set process priority (0 idle, 2 normal to 5 highest)
  --cpu-max-threads-hint=N  maximum CPU threads count (in percentage) hint for autoconfig
  --cpu-memory-pool=N       number of 2 MB pages for persistent memory pool, -1 (auto), 0 (disable)
  --cpu-no-yield            prefer maximum hashrate rather than system response/stability
  --no-huge-pages           disable huge pages support
  --asm=ASM                 ASM optimizations, possible values: auto, none, intel, ryzen, bulldozer
  --randomx-init=N          thread count to initialize RandomX dataset
  --randomx-no-numa         disable NUMA support for RandomX
  --randomx-mode=MODE       RandomX mode: auto, fast, light
  --randomx-1gb-pages       use 1GB hugepages for dataset (Linux only)
  --randomx-wrmsr=N         write custom value (0-15) to Intel MSR register 0x1a4 or disable MSR mod (-1)
  --randomx-no-rdmsr        disable reverting initial MSR values on exit
  --astrobwt-max-size=N     skip hashes with large stage 2 size, default: 550, min: 400, max: 1200
  --astrobwt-avx2           enable AVX2 optimizations for AstroBWT algorithm


API:

--api-worker-id=ID        custom worker-id for API
  --api-id=ID               custom instance ID for API
  --http-host=HOST          bind host for HTTP API (default: 127.0.0.1)
  --http-port=N             bind port for HTTP API
  --http-access-token=T     access token for HTTP API
  --http-no-restricted      enable full remote access to HTTP API (only if access token set)



OpenCL backend:

--opencl                  enable OpenCL mining backend
  --opencl-devices=N        comma separated list of OpenCL devices to use
  --opencl-platform=N       OpenCL platform index or name
  --opencl-loader=PATH      path to OpenCL-ICD-Loader (OpenCL.dll or libOpenCL.so)
  --opencl-no-cache         disable OpenCL cache
  --print-platforms         print available OpenCL platforms and exit


CUDA backend:

--cuda                    enable CUDA mining backend
  --cuda-loader=PATH        path to CUDA plugin (xmrig-cuda.dll or libxmrig-cuda.so)
  --cuda-devices=N          comma separated list of CUDA devices to use
  --cuda-bfactor-hint=N     bfactor hint for autoconfig (0-12)
  --cuda-bsleep-hint=N      bsleep hint for autoconfig
  --no-nvml                 disable NVML (NVIDIA Management Library) support


TLS:

--tls-gen=HOSTNAME        generate TLS certificate for specific hostname
  --tls-cert=FILE           load TLS certificate chain from a file in the PEM format
  --tls-cert-key=FILE       load TLS certificate private key from a file in the PEM format
  --tls-dhparam=FILE        load DH parameters for DHE ciphers from a file in the PEM format
  --tls-protocols=N         enable specified TLS protocols, example: "TLSv1 TLSv1.1 TLSv1.2 TLSv1.3"
  --tls-ciphers=S           set list of available ciphers (TLSv1.2 and below)
  --tls-ciphersuites=S      set list of available TLSv1.3 ciphersuites


Logging:

-S, --syslog                  use system log for output messages
-l, --log-file=FILE           log all output to a file
  --print-time=N            print hashrate report every N seconds
  --health-print-time=N     print health report every N seconds
  --no-color                disable colored output
  --verbose                 verbose output


Misc:

-c, --config=FILE             load a JSON-format configuration file
-B, --background              run the miner in the background
-V, --version                 output version information and exit
-h, --help                    display this help and exit
  --dry-run                 test configuration and exit
  --export-topology         export hwloc topology to a XML file and exit
  --title                   set custom console window title
  --no-title                disable setting console window title
 

DONATE:

BTC BTC: bc1qmpdug4lkkz4kvw2gnrfx9hjgclcge9ytq0z0wl
$ ETH: 0xd5533d796302DA0Ec67a34eBB0Ba432B164a1CA5
$ XMR: 8BFHZwHteLf46VhuXdw9t8h3oEm1ajFxPeNdLLKsnLZjS5EJQL1dJpSCdYFAzty2S2UYd8G86YvioXL b3yXfPLVvN71u1XK
$ RVN: RV8Tz58pZ6Q6fFn5LGGN8hQsUoPzJC1vMi
$ LTC: ltc1q2c68a8spxap6j3nhjk09rem6zf75rahgu7s0gh
Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO (SMP/SMP+) - multi crypto mining panel for AMD & NVIDIA
by
mi6ee
on 25/05/2022, 07:03:10 UTC
SmartMinerPRO (SMP+) - Multi crypto mining panel for AMD & NVIDIA & ASIC & FPGA

SMP+ is a software product developed by SmartMiner.PRO with a simple and convenient GUI. This version of SMP + was created to work with each cryptocurrency based on these algorithms, including Bitcoin. Ethereum, Ethereum Classic, Sumocoin, Grin, Monero, Ravencoin and many others. This version of SMP + runs on Windows with AMD CPUs and GPUs or Nvidia and ASIC / FPGA.

! OS Support: Windows (32/64 bit).

 + Official github developer: https://github.com/MiningSoftware/SmartMinerPRO
 + DOWNLOAD LINKS: https://github.com/MiningSoftware/SmartMinerPRO/releases

Key Features SMP:
  • 💎 Built-in miners: XMR-STAK & XMRIG, GMINER. T-REX, TeamRedMiner, CGMiner, T-Rex, NBMiner, Nanominer, PhoenixMiner, CCMiner, miniz, cpu miner, cpuminer-opt, Kadena Miner, Kawpowminer and many others.
  • 🖥 Works on all versions of Windows
  • 📊 Over 50 of the best mining puols
  • ℹ️ Complete information about each currency with links  
  • 📈 CoinGecko price and coin statistics
  • 📊 Coin mining statistics from Cryptunit
  • ♻️ CPU & GPU Mining
  • 🔸 Easy to use
  • 🔸 Easy installation of other miners and .bat configuration files.
  • 🔸 To start mining using SMP +, just enter your wallet in the .bat file of the selected miner
  • 🔸 SMP + has demonstrated high performance when working with Bitcoin, Ethereum, Ethereum Classic, Monero, Raven and other currencies, stands out for its high stability and easy setup.
  • 🔸 Easy one-click CPU mining for CPUs that support at least SSE2 (only works on Windows x64).
  • 🔸 Easy one-click GPU mining for NVIDIA GPUs using microarchitecture (compute capability) SM 3.0+.
  • 🔸 Easy one-click GPU mining for AMD GPUs using any AMD GPU devices that supports OpenCL.
  • 🔸 Integrated support for Simple Multi-Algorithm. Always mine most profitable algorithm.
  • 🔸 Integrated benchmarking tool. Run it only once before you start mining and after every hardware/driver/software upgrade.
  • 🔸 Watch-feature - automatically restart miner if crashed or hanged.
  • 🔸 Much more..[/sup]

Screenshots GUI SMP+:


Release Note SmartMinerPRO:

v1.3.0

Add Miners & Update
GMiner 2.96
TRM 0.10.0
T-Rex 0.26.1
xmrig-6.7.0
cpuminer-opt-3.19.7

Updates SMP:
Check generated DAG, a warning at very high GPU overclocking for Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock GPU without errors
checking Shares on CPU, a warning when the GPU is overclocked too high for the Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock the GPU without errors
DAG caching, if the GPU has enough memory, DAG files are not recalculated when switching to another algorithm when mining Ethash + Zilliqa or Nicehash, which has a positive impact on user profitability
auto-selection of optimal cores for each device on Ethash, Etcash, KAWPOW
ability to manually select the core on each device for Ethash, Etcash
GPU temperature control and shutdown in case of overheating
watchdog - a process-watchdog that monitors the state of key systems of the miner, and will restart the miner if it crashes or hangs
Mechanism to recover lost connections to the pool
Failover support - the Miner uses failover pools until the connection to the main pool is restored
support for secure connections
SOCKS5 proxy support
informative and readable display of tabular statistics on the console
detailed information per device (temperature, power consumption, load on the cooler, memory frequency, CPU frequency, power efficiency)
parallel output of the information to the console and to a file on the disk
built-in statistics server - remote monitoring of the miner in a web browser
memory settings for Nvidia GPUs with GDDR5X and GDDR5 memory
Overclocking core clock, memory clock, core voltage, memory voltage, fan speed, power limit for Windows
Safe DAG generation for Nvidia GPUs
auto fan speed control to achieve target temperatures

v1.0.1 is a smart multi-currency cryptocurrency miner for CPU / GPU / ASIC / FPGA. Which itself finds the available equipment and selects the optimal settings. SMP + allows you to connect / disconnect / stop / start one or more farms in one click. During the initial start-up, in the “Quick Start” step, you can select a separate algorithm for each farm.

How to start

1. Download "SmartMinerPRO"
2. Unpack the archive
3. Run "SmartMinerPRO.exe"

IMPORTANT! For your mining equipment, you must install the necessary dependencies. Since each miner program has its own requirements for work. For reference, you can refer to the root directory in the miner’s folder.

System requirements


    WINDOWS XP,7,8,10 or later (x64)
    CPU (x64/x86/ARM) For CPU mining a modern CPU with SSE2 support
    OpenCL for AMD GPUs. For AMD mining any AMD GPU with OpenCL support
    CUDA for NVIDIA GPUs. For NVIDIA mining any NVIDIA GPU with Compute capability (SM) 3.0 or newer
    up-to-date patches for OS
    up-to-date drivers for all GPUs
    Reliable internet connectivity

Note: .NET Framework 4.8 or higher and Microsoft Visual C++ Redistributable 2015 are required. No additional installations should be needed if you use Windows 7 or later. However, if you encounter any issues when starting application (application would fail to start or errors/warnings about missing DLL files are displayed) you should download and install Microsoft .NET Framework 4.8 and Microsoft Visual C++ Redistributable 2015 (vcredist_x64.exe) (after installation a reboot might be required).

    Microsoft .NET Framework 4.8: https://dotnet.microsoft.com/download/dotnet-framework/thank-you/net48-web-installer
    Microsoft Visual C++ Redistributable 2015: https://www.microsoft.com/en-us/download/details.aspx?id=48145

Full list Support miners SMP+:

    bminer
    ccminer
    Nanominer
    Claymore
    cpuminer-opt
    cpuminer-GR
    CryptoDredge
    ethminer
    EWB
    Gminer
    cgminer
    wildrig-multi  
    kawpowminer
    lolMiner
    miniZ
    NBMiner
    PhoenixMiner
    Progpowminer
    SRBMiner-CN
    SRBMiner-Multi
    TeamRedMiner
    T-Rex Miner
    TT-Miner
    xmrig
    xmr-stak
    xmr-stak-rx
    z-enemy

! Please note that the list of supported miners will be expanded with subsequent versions of the SMP +

How to use SMP

1. At the first launch of SMP, select the coin to be mined • Optionally, you can choose what equipment will be used, according to the standard, all available CPU / GPUs are used.
2. Click "Start mining", in the mining parameters window, select the miner and the finished .bat file (coins \ pool) • By default, safe recommended settings for increased profitability of mining are used.
3. You can edit the .bat file to replace the wallet and pool values with your own by pressing the "EDIT" button. • If desired, you can replace the parameters of the request, for this we recommend that you refer to the practical guide in the root folders of the miners.
4. After replacing the values of the wallet and pool with yours, click "RUN"
5. Then begins the extraction of coins

DevFee & Donations
SmartMinerPRO (SMP / SMP +) is completely free software. This does not apply to built-in programs for mining (miners).

Command line options

Network:

--no-cpu                  disable CPU mining backend
-o, --url=URL                 URL of mining server
-a, --algo=ALGO               mining algorithm
  --coin=COIN               specify coin instead of algorithm
  -u, --user=USERNAME           username for mining server
  -p, --pass=PASSWORD           password for mining server
  -O, --userpass=U:P            username:password pair for mining server
  -x, --proxy=HOST:PORT         connect through a SOCKS5 proxy
  -k, --keepalive               send keepalive packet for prevent timeout (needs pool support)
  --nicehash                enable nicehash.com support
  --rig-id=ID               rig identifier for pool-side statistics (needs pool support)
  --tls                     enable SSL/TLS support (needs pool support)
  --tls-fingerprint=HEX     pool TLS certificate fingerprint for strict certificate pinning
  --daemon                  use daemon RPC instead of pool for solo mining
  --daemon-poll-interval=N  daemon poll interval in milliseconds (default: 1000)
  -r, --retries=N               number of times to retry before switch to backup server (default: 5)
  -R, --retry-pause=N           time to pause between retries (default: 5)
  --user-agent              set custom user-agent string for pool
  --donate-level=N          donate level, default %% (5 minutes in 100 minutes)
  --donate-over-proxy=N     control donate over xmrig-proxy feature


CPU backend:

--no-cpu                  disable CPU mining backend
  -t, --threads=N               number of CPU threads
  -v, --av=N                    algorithm variation, 0 auto select
  --cpu-affinity            set process affinity to CPU core(s), mask 0x3 for cores 0 and 1
  --cpu-priority            set process priority (0 idle, 2 normal to 5 highest)
  --cpu-max-threads-hint=N  maximum CPU threads count (in percentage) hint for autoconfig
  --cpu-memory-pool=N       number of 2 MB pages for persistent memory pool, -1 (auto), 0 (disable)
  --cpu-no-yield            prefer maximum hashrate rather than system response/stability
  --no-huge-pages           disable huge pages support
  --asm=ASM                 ASM optimizations, possible values: auto, none, intel, ryzen, bulldozer
  --randomx-init=N          thread count to initialize RandomX dataset
  --randomx-no-numa         disable NUMA support for RandomX
  --randomx-mode=MODE       RandomX mode: auto, fast, light
  --randomx-1gb-pages       use 1GB hugepages for dataset (Linux only)
  --randomx-wrmsr=N         write custom value (0-15) to Intel MSR register 0x1a4 or disable MSR mod (-1)
  --randomx-no-rdmsr        disable reverting initial MSR values on exit
  --astrobwt-max-size=N     skip hashes with large stage 2 size, default: 550, min: 400, max: 1200
  --astrobwt-avx2           enable AVX2 optimizations for AstroBWT algorithm


API:

--api-worker-id=ID        custom worker-id for API
  --api-id=ID               custom instance ID for API
  --http-host=HOST          bind host for HTTP API (default: 127.0.0.1)
  --http-port=N             bind port for HTTP API
  --http-access-token=T     access token for HTTP API
  --http-no-restricted      enable full remote access to HTTP API (only if access token set)



OpenCL backend:

--opencl                  enable OpenCL mining backend
  --opencl-devices=N        comma separated list of OpenCL devices to use
  --opencl-platform=N       OpenCL platform index or name
  --opencl-loader=PATH      path to OpenCL-ICD-Loader (OpenCL.dll or libOpenCL.so)
  --opencl-no-cache         disable OpenCL cache
  --print-platforms         print available OpenCL platforms and exit


CUDA backend:

--cuda                    enable CUDA mining backend
  --cuda-loader=PATH        path to CUDA plugin (xmrig-cuda.dll or libxmrig-cuda.so)
  --cuda-devices=N          comma separated list of CUDA devices to use
  --cuda-bfactor-hint=N     bfactor hint for autoconfig (0-12)
  --cuda-bsleep-hint=N      bsleep hint for autoconfig
  --no-nvml                 disable NVML (NVIDIA Management Library) support


TLS:

--tls-gen=HOSTNAME        generate TLS certificate for specific hostname
  --tls-cert=FILE           load TLS certificate chain from a file in the PEM format
  --tls-cert-key=FILE       load TLS certificate private key from a file in the PEM format
  --tls-dhparam=FILE        load DH parameters for DHE ciphers from a file in the PEM format
  --tls-protocols=N         enable specified TLS protocols, example: "TLSv1 TLSv1.1 TLSv1.2 TLSv1.3"
  --tls-ciphers=S           set list of available ciphers (TLSv1.2 and below)
  --tls-ciphersuites=S      set list of available TLSv1.3 ciphersuites


Logging:

-S, --syslog                  use system log for output messages
-l, --log-file=FILE           log all output to a file
  --print-time=N            print hashrate report every N seconds
  --health-print-time=N     print health report every N seconds
  --no-color                disable colored output
  --verbose                 verbose output


Misc:

-c, --config=FILE             load a JSON-format configuration file
-B, --background              run the miner in the background
-V, --version                 output version information and exit
-h, --help                    display this help and exit
  --dry-run                 test configuration and exit
  --export-topology         export hwloc topology to a XML file and exit
  --title                   set custom console window title
  --no-title                disable setting console window title
 

Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO (SMP/SMP+) - multi crypto mining panel for AMD & NVIDIA
by
mi6ee
on 22/05/2022, 03:23:35 UTC
SmartMinerPRO 1.3.0

Add Miners & Update

    GMiner 2.96
    TRM 0.10.0
    T-Rex 0.26.1
    xmrig-6.7.0
    cpuminer-opt-3.19.7

Updates SMP:

    Check generated DAG, a warning at very high GPU overclocking for Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock GPU without errors
    checking Shares on CPU, a warning when the GPU is overclocked too high for the Ethash, Etcash, KAWPOW and ProgPoW algorithms, helps overclock the GPU without errors
    DAG caching, if the GPU has enough memory, DAG files are not recalculated when switching to another algorithm when mining Ethash + Zilliqa or Nicehash, which has a positive impact on user profitability
    auto-selection of optimal cores for each device on Ethash, Etcash, KAWPOW
    ability to manually select the core on each device for Ethash, Etcash
    GPU temperature control and shutdown in case of overheating
    watchdog - a process-watchdog that monitors the state of key systems of the miner, and will restart the miner if it crashes or hangs
    Mechanism to recover lost connections to the pool
    Failover support - the Miner uses failover pools until the connection to the main pool is restored
    support for secure connections
    SOCKS5 proxy support
    informative and readable display of tabular statistics on the console
    detailed information per device (temperature, power consumption, load on the cooler, memory frequency, CPU frequency, power efficiency)
    parallel output of the information to the console and to a file on the disk
    built-in statistics server - remote monitoring of the miner in a web browser
    memory settings for Nvidia GPUs with GDDR5X and GDDR5 memory
    Overclocking core clock, memory clock, core voltage, memory voltage, fan speed, power limit for Windows
    Safe DAG generation for Nvidia GPUs
    auto fan speed control to achieve target temperatures

Download Link: https://github.com/MiningSoftware/SmartMinerPRO/releases/
Post
Topic
Board Mining (Altcoins)
Re: SmartMinerPRO (SMP/SMP+) - multi crypto mining panel for AMD & NVIDIA
by
mi6ee
on 13/02/2022, 15:54:30 UTC
SmartMinerPRO (SMP/SMP+) - multi crypto mining panel for AMD & NVIDIA

SMP + is a software product developed by SmartMiner.PRO with a simple and convenient GUI. This version of SMP + was created to work with each cryptocurrency based on these algorithms, including Bitcoin. Ethereum, Ethereum Classic, Sumocoin, Grin, Monero, Ravencoin and many others. This version of SMP + runs on Windows with AMD CPUs and GPUs or Nvidia and ASIC / FPGA.

Key Features SMP:

  • 💎 Built-in miners: XMR-STAK & XMRIG, GMINER. T-REX, TeamRedMiner, CGMiner, T-Rex, NBMiner, Nanominer, PhoenixMiner, CCMiner, miniz, cpu miner, cpuminer-opt, Kadena Miner, Kawpowminer and many others.
  • 🖥 Works on all versions of Windows
  • 📊 Over 50 of the best mining puols
  • ℹ️ Complete information about each currency with links  
  • 📈 CoinGecko price and coin statistics
  • 📊 Coin mining statistics from Cryptunit
  • ♻️ CPU & GPU Mining
  • 🔸 Easy to use
  • 🔸 Easy installation of other miners and .bat configuration files.
  • 🔸 To start mining using SMP +, just enter your wallet in the .bat file of the selected miner
  • 🔸 SMP + has demonstrated high performance when working with Bitcoin, Ethereum, Ethereum Classic, Monero, Raven and other currencies, stands out for its high stability and easy setup.
  • 🔸 Easy one-click CPU mining for CPUs that support at least SSE2 (only works on Windows x64).
  • 🔸 Easy one-click GPU mining for NVIDIA GPUs using microarchitecture (compute capability) SM 3.0+.
  • 🔸 Easy one-click GPU mining for AMD GPUs using any AMD GPU devices that supports OpenCL.
  • 🔸 Integrated support for Simple Multi-Algorithm. Always mine most profitable algorithm.
  • 🔸 Integrated benchmarking tool. Run it only once before you start mining and after every hardware/driver/software upgrade.
  • 🔸 Watch-feature - automatically restart miner if crashed or hanged.
  • 🔸 Much more..


Screenshots GUI SMP+:





Release Note:
SMP + v1.0.1 is a smart multi-currency cryptocurrency miner for CPU / GPU / ASIC / FPGA. Which itself finds the available equipment and selects the optimal settings. SMP + allows you to connect / disconnect / stop / start one or more farms in one click. During the initial start-up, in the “Quick Start” step, you can select a separate algorithm for each farm.

! OS Support: Windows (64 bit).

How to start

1. Download SmartMinerPRO+
2. Unpack the archive
3. Run SMP.exe/SMP+.exe

IMPORTANT! For your mining equipment, you must install the necessary dependencies. Since each miner program has its own requirements for work. For reference, you can refer to the root directory in the miner’s folder.

System requirements


    WINDOWS XP,7,8,10 or later (x64)
    CPU (x64/x86/ARM) For CPU mining a modern CPU with SSE2 support
    OpenCL for AMD GPUs. For AMD mining any AMD GPU with OpenCL support
    CUDA for NVIDIA GPUs. For NVIDIA mining any NVIDIA GPU with Compute capability (SM) 3.0 or newer
    up-to-date patches for OS
    up-to-date drivers for all GPUs
    Reliable internet connectivity

Note: .NET Framework 4.8 or higher and Microsoft Visual C++ Redistributable 2015 are required. No additional installations should be needed if you use Windows 7 or later. However, if you encounter any issues when starting application (application would fail to start or errors/warnings about missing DLL files are displayed) you should download and install Microsoft .NET Framework 4.8 and Microsoft Visual C++ Redistributable 2015 (vcredist_x64.exe) (after installation a reboot might be required).

    Microsoft .NET Framework 4.8: https://dotnet.microsoft.com/download/dotnet-framework/thank-you/net48-web-installer
    Microsoft Visual C++ Redistributable 2015: https://www.microsoft.com/en-us/download/details.aspx?id=48145

Full list Support miners SMP+:

! Please note that the list of supported miners will be expanded with subsequent versions of the SMP +

    bminer-lite-v16.2.0
    ccminer-2.3.1-cuda10
    Nanominer-1.9.5
    Claymore_v15.0
    cpuminer-opt-3.12.4
    CryptoDredge_0.22.0
    ethminer 0.19.0-alpha.0
    EWB_v0.6
    Gminer_2.09
    kawpowminer-1.2.3
    lolMiner_v0.9.8
    miniZ_v1.5t2_cuda10
    NBMiner_30.2
    PhoenixMiner_5.0e
    Progpowminer
    SRBMiner-CN-V1-9-3
    SRBMiner-Multi-0-4-3
    TeamRedMiner-v0.7.3
    T-Rex 0.15.4
    TT-Miner-5.0.1
    xmrig-5.5.1
    xmr-stak-2.10.8
    z-enemy 2.5
    zm_0.6.2

How to use

1. At the first launch of SMP, select the coin to be mined • Optionally, you can choose what equipment will be used, according to the standard, all available CPU / GPUs are used.
2. Click "Start mining", in the mining parameters window, select the miner and the finished .bat file (coins \ pool) • By default, safe recommended settings for increased profitability of mining are used.
3. You can edit the .bat file to replace the wallet and pool values with your own by pressing the "EDIT" button. • If desired, you can replace the parameters of the request, for this we recommend that you refer to the practical guide in the root folders of the miners.
4. After replacing the values of the wallet and pool with yours, click "RUN"
5. Then begins the extraction of coins

DevFee & Donations
SmartMinerPRO (SMP / SMP +) is completely free software. This does not apply to built-in programs for mining (miners).

Command line options

Network:

--no-cpu                  disable CPU mining backend
-o, --url=URL                 URL of mining server
-a, --algo=ALGO               mining algorithm
  --coin=COIN               specify coin instead of algorithm
  -u, --user=USERNAME           username for mining server
  -p, --pass=PASSWORD           password for mining server
  -O, --userpass=U:P            username:password pair for mining server
  -x, --proxy=HOST:PORT         connect through a SOCKS5 proxy
  -k, --keepalive               send keepalive packet for prevent timeout (needs pool support)
  --nicehash                enable nicehash.com support
  --rig-id=ID               rig identifier for pool-side statistics (needs pool support)
  --tls                     enable SSL/TLS support (needs pool support)
  --tls-fingerprint=HEX     pool TLS certificate fingerprint for strict certificate pinning
  --daemon                  use daemon RPC instead of pool for solo mining
  --daemon-poll-interval=N  daemon poll interval in milliseconds (default: 1000)
  -r, --retries=N               number of times to retry before switch to backup server (default: 5)
  -R, --retry-pause=N           time to pause between retries (default: 5)
  --user-agent              set custom user-agent string for pool
  --donate-level=N          donate level, default %% (5 minutes in 100 minutes)
  --donate-over-proxy=N     control donate over xmrig-proxy feature


CPU backend:

--no-cpu                  disable CPU mining backend
  -t, --threads=N               number of CPU threads
  -v, --av=N                    algorithm variation, 0 auto select
  --cpu-affinity            set process affinity to CPU core(s), mask 0x3 for cores 0 and 1
  --cpu-priority            set process priority (0 idle, 2 normal to 5 highest)
  --cpu-max-threads-hint=N  maximum CPU threads count (in percentage) hint for autoconfig
  --cpu-memory-pool=N       number of 2 MB pages for persistent memory pool, -1 (auto), 0 (disable)
  --cpu-no-yield            prefer maximum hashrate rather than system response/stability
  --no-huge-pages           disable huge pages support
  --asm=ASM                 ASM optimizations, possible values: auto, none, intel, ryzen, bulldozer
  --randomx-init=N          thread count to initialize RandomX dataset
  --randomx-no-numa         disable NUMA support for RandomX
  --randomx-mode=MODE       RandomX mode: auto, fast, light
  --randomx-1gb-pages       use 1GB hugepages for dataset (Linux only)
  --randomx-wrmsr=N         write custom value (0-15) to Intel MSR register 0x1a4 or disable MSR mod (-1)
  --randomx-no-rdmsr        disable reverting initial MSR values on exit
  --astrobwt-max-size=N     skip hashes with large stage 2 size, default: 550, min: 400, max: 1200
  --astrobwt-avx2           enable AVX2 optimizations for AstroBWT algorithm


API:

--api-worker-id=ID        custom worker-id for API
  --api-id=ID               custom instance ID for API
  --http-host=HOST          bind host for HTTP API (default: 127.0.0.1)
  --http-port=N             bind port for HTTP API
  --http-access-token=T     access token for HTTP API
  --http-no-restricted      enable full remote access to HTTP API (only if access token set)



OpenCL backend:

--opencl                  enable OpenCL mining backend
  --opencl-devices=N        comma separated list of OpenCL devices to use
  --opencl-platform=N       OpenCL platform index or name
  --opencl-loader=PATH      path to OpenCL-ICD-Loader (OpenCL.dll or libOpenCL.so)
  --opencl-no-cache         disable OpenCL cache
  --print-platforms         print available OpenCL platforms and exit


CUDA backend:

--cuda                    enable CUDA mining backend
  --cuda-loader=PATH        path to CUDA plugin (xmrig-cuda.dll or libxmrig-cuda.so)
  --cuda-devices=N          comma separated list of CUDA devices to use
  --cuda-bfactor-hint=N     bfactor hint for autoconfig (0-12)
  --cuda-bsleep-hint=N      bsleep hint for autoconfig
  --no-nvml                 disable NVML (NVIDIA Management Library) support


TLS:

--tls-gen=HOSTNAME        generate TLS certificate for specific hostname
  --tls-cert=FILE           load TLS certificate chain from a file in the PEM format
  --tls-cert-key=FILE       load TLS certificate private key from a file in the PEM format
  --tls-dhparam=FILE        load DH parameters for DHE ciphers from a file in the PEM format
  --tls-protocols=N         enable specified TLS protocols, example: "TLSv1 TLSv1.1 TLSv1.2 TLSv1.3"
  --tls-ciphers=S           set list of available ciphers (TLSv1.2 and below)
  --tls-ciphersuites=S      set list of available TLSv1.3 ciphersuites


Logging:

-S, --syslog                  use system log for output messages
-l, --log-file=FILE           log all output to a file
  --print-time=N            print hashrate report every N seconds
  --health-print-time=N     print health report every N seconds
  --no-color                disable colored output
  --verbose                 verbose output


Misc:

-c, --config=FILE             load a JSON-format configuration file
-B, --background              run the miner in the background
-V, --version                 output version information and exit
-h, --help                    display this help and exit
  --dry-run                 test configuration and exit
  --export-topology         export hwloc topology to a XML file and exit
  --title                   set custom console window title
  --no-title                disable setting console window title
 


DOWNLOAD LINKS:


Official github developer: https://github.com/MiningSoftware/SmartMiner

Post
Topic
Board Mining (Altcoins)
Merits 1 from 1 user
Topic OP
SmartMinerPRO (SMP/SMP+) - multi crypto mining panel
by
mi6ee
on 18/10/2020, 18:04:22 UTC
⭐ Merited by overmarck (1)
SmartMinerPRO (SMP/SMP+) - multi crypto mining panel

SMP + is a software product developed by SmartMiner.PRO with a simple and convenient GUI. This version of SMP + was created to work with each cryptocurrency based on these algorithms, including Bitcoin. Ethereum, Ethereum Classic, Sumocoin, Grin, Monero, Ravencoin and many others. This version of SMP + runs on Windows with AMD CPUs and GPUs or Nvidia and ASIC / FPGA.

Key Features SMP:

  • 💎 Built-in miners: XMR-STAK & XMRIG, GMINER. T-REX, TeamRedMiner, CGMiner, T-Rex, NBMiner, Nanominer, PhoenixMiner, CCMiner, miniz, cpu miner, cpuminer-opt, Kadena Miner, Kawpowminer and many others.
  • 🖥 Works on all versions of Windows
  • 📊 Over 50 of the best mining puols
  • ℹ️ Complete information about each currency with links   
  • 📈 CoinGecko price and coin statistics
  • 📊 Coin mining statistics from Cryptunit
  • ♻️ CPU & GPU Mining
  • 🔸 Easy to use
  • 🔸 Easy installation of other miners and .bat configuration files.
  • 🔸 To start mining using SMP +, just enter your wallet in the .bat file of the selected miner
  • 🔸 SMP + has demonstrated high performance when working with Bitcoin, Ethereum, Ethereum Classic, Monero, Raven and other currencies, stands out for its high stability and easy setup.
  • 🔸 Easy one-click CPU mining for CPUs that support at least SSE2 (only works on Windows x64).
  • 🔸 Easy one-click GPU mining for NVIDIA GPUs using microarchitecture (compute capability) SM 3.0+.
  • 🔸 Easy one-click GPU mining for AMD GPUs using any AMD GPU devices that supports OpenCL.
  • 🔸 Integrated support for Simple Multi-Algorithm. Always mine most profitable algorithm.
  • 🔸 Integrated benchmarking tool. Run it only once before you start mining and after every hardware/driver/software upgrade.
  • 🔸 Watch-feature - automatically restart miner if crashed or hanged.
  • 🔸 Much more..


Screenshots GUI SMP+:





Release Note:
SMP + v1.0.1 is a smart multi-currency cryptocurrency miner for CPU / GPU / ASIC / FPGA. Which itself finds the available equipment and selects the optimal settings. SMP + allows you to connect / disconnect / stop / start one or more farms in one click. During the initial start-up, in the “Quick Start” step, you can select a separate algorithm for each farm.

! OS Support: Windows (64 bit).

How to start

1. Download SmartMinerPRO+
2. Unpack the archive
3. Run SMP.exe/SMP+.exe

IMPORTANT! For your mining equipment, you must install the necessary dependencies. Since each miner program has its own requirements for work. For reference, you can refer to the root directory in the miner’s folder.

System requirements


    WINDOWS XP,7,8,10 or later (x64)
    CPU (x64/x86/ARM) For CPU mining a modern CPU with SSE2 support
    OpenCL for AMD GPUs. For AMD mining any AMD GPU with OpenCL support
    CUDA for NVIDIA GPUs. For NVIDIA mining any NVIDIA GPU with Compute capability (SM) 3.0 or newer
    up-to-date patches for OS
    up-to-date drivers for all GPUs
    Reliable internet connectivity

Note: .NET Framework 4.8 or higher and Microsoft Visual C++ Redistributable 2015 are required. No additional installations should be needed if you use Windows 7 or later. However, if you encounter any issues when starting application (application would fail to start or errors/warnings about missing DLL files are displayed) you should download and install Microsoft .NET Framework 4.8 and Microsoft Visual C++ Redistributable 2015 (vcredist_x64.exe) (after installation a reboot might be required).

    Microsoft .NET Framework 4.8: https://dotnet.microsoft.com/download/dotnet-framework/thank-you/net48-web-installer
    Microsoft Visual C++ Redistributable 2015: https://www.microsoft.com/en-us/download/details.aspx?id=48145

Full list Support miners SMP+:

! Please note that the list of supported miners will be expanded with subsequent versions of the SMP +

    bminer-lite-v16.2.0
    ccminer-2.3.1-cuda10
    Nanominer-1.9.5
    Claymore_v15.0
    cpuminer-opt-3.12.4
    CryptoDredge_0.22.0
    ethminer 0.19.0-alpha.0
    EWB_v0.6
    Gminer_2.09
    kawpowminer-1.2.3
    lolMiner_v0.9.8
    miniZ_v1.5t2_cuda10
    NBMiner_30.2
    PhoenixMiner_5.0e
    Progpowminer
    SRBMiner-CN-V1-9-3
    SRBMiner-Multi-0-4-3
    TeamRedMiner-v0.7.3
    T-Rex 0.15.4
    TT-Miner-5.0.1
    xmrig-5.5.1
    xmr-stak-2.10.8
    z-enemy 2.5
    zm_0.6.2

How to use

1. At the first launch of SMP, select the coin to be mined • Optionally, you can choose what equipment will be used, according to the standard, all available CPU / GPUs are used.
2. Click "Start mining", in the mining parameters window, select the miner and the finished .bat file (coins \ pool) • By default, safe recommended settings for increased profitability of mining are used.
3. You can edit the .bat file to replace the wallet and pool values with your own by pressing the "EDIT" button. • If desired, you can replace the parameters of the request, for this we recommend that you refer to the practical guide in the root folders of the miners.
4. After replacing the values of the wallet and pool with yours, click "RUN"
5. Then begins the extraction of coins

DevFee & Donations
SmartMinerPRO (SMP / SMP +) is completely free software. This does not apply to built-in programs for mining (miners).

Command line options

Network:

--no-cpu                  disable CPU mining backend
-o, --url=URL                 URL of mining server
-a, --algo=ALGO               mining algorithm
  --coin=COIN               specify coin instead of algorithm
  -u, --user=USERNAME           username for mining server
  -p, --pass=PASSWORD           password for mining server
  -O, --userpass=U:P            username:password pair for mining server
  -x, --proxy=HOST:PORT         connect through a SOCKS5 proxy
  -k, --keepalive               send keepalive packet for prevent timeout (needs pool support)
  --nicehash                enable nicehash.com support
  --rig-id=ID               rig identifier for pool-side statistics (needs pool support)
  --tls                     enable SSL/TLS support (needs pool support)
  --tls-fingerprint=HEX     pool TLS certificate fingerprint for strict certificate pinning
  --daemon                  use daemon RPC instead of pool for solo mining
  --daemon-poll-interval=N  daemon poll interval in milliseconds (default: 1000)
  -r, --retries=N               number of times to retry before switch to backup server (default: 5)
  -R, --retry-pause=N           time to pause between retries (default: 5)
  --user-agent              set custom user-agent string for pool
  --donate-level=N          donate level, default %% (5 minutes in 100 minutes)
  --donate-over-proxy=N     control donate over xmrig-proxy feature


CPU backend:

--no-cpu                  disable CPU mining backend
  -t, --threads=N               number of CPU threads
  -v, --av=N                    algorithm variation, 0 auto select
  --cpu-affinity            set process affinity to CPU core(s), mask 0x3 for cores 0 and 1
  --cpu-priority            set process priority (0 idle, 2 normal to 5 highest)
  --cpu-max-threads-hint=N  maximum CPU threads count (in percentage) hint for autoconfig
  --cpu-memory-pool=N       number of 2 MB pages for persistent memory pool, -1 (auto), 0 (disable)
  --cpu-no-yield            prefer maximum hashrate rather than system response/stability
  --no-huge-pages           disable huge pages support
  --asm=ASM                 ASM optimizations, possible values: auto, none, intel, ryzen, bulldozer
  --randomx-init=N          thread count to initialize RandomX dataset
  --randomx-no-numa         disable NUMA support for RandomX
  --randomx-mode=MODE       RandomX mode: auto, fast, light
  --randomx-1gb-pages       use 1GB hugepages for dataset (Linux only)
  --randomx-wrmsr=N         write custom value (0-15) to Intel MSR register 0x1a4 or disable MSR mod (-1)
  --randomx-no-rdmsr        disable reverting initial MSR values on exit
  --astrobwt-max-size=N     skip hashes with large stage 2 size, default: 550, min: 400, max: 1200
  --astrobwt-avx2           enable AVX2 optimizations for AstroBWT algorithm


API:

--api-worker-id=ID        custom worker-id for API
  --api-id=ID               custom instance ID for API
  --http-host=HOST          bind host for HTTP API (default: 127.0.0.1)
  --http-port=N             bind port for HTTP API
  --http-access-token=T     access token for HTTP API
  --http-no-restricted      enable full remote access to HTTP API (only if access token set)



OpenCL backend:

--opencl                  enable OpenCL mining backend
  --opencl-devices=N        comma separated list of OpenCL devices to use
  --opencl-platform=N       OpenCL platform index or name
  --opencl-loader=PATH      path to OpenCL-ICD-Loader (OpenCL.dll or libOpenCL.so)
  --opencl-no-cache         disable OpenCL cache
  --print-platforms         print available OpenCL platforms and exit


CUDA backend:

--cuda                    enable CUDA mining backend
  --cuda-loader=PATH        path to CUDA plugin (xmrig-cuda.dll or libxmrig-cuda.so)
  --cuda-devices=N          comma separated list of CUDA devices to use
  --cuda-bfactor-hint=N     bfactor hint for autoconfig (0-12)
  --cuda-bsleep-hint=N      bsleep hint for autoconfig
  --no-nvml                 disable NVML (NVIDIA Management Library) support


TLS:

--tls-gen=HOSTNAME        generate TLS certificate for specific hostname
  --tls-cert=FILE           load TLS certificate chain from a file in the PEM format
  --tls-cert-key=FILE       load TLS certificate private key from a file in the PEM format
  --tls-dhparam=FILE        load DH parameters for DHE ciphers from a file in the PEM format
  --tls-protocols=N         enable specified TLS protocols, example: "TLSv1 TLSv1.1 TLSv1.2 TLSv1.3"
  --tls-ciphers=S           set list of available ciphers (TLSv1.2 and below)
  --tls-ciphersuites=S      set list of available TLSv1.3 ciphersuites


Logging:

-S, --syslog                  use system log for output messages
-l, --log-file=FILE           log all output to a file
  --print-time=N            print hashrate report every N seconds
  --health-print-time=N     print health report every N seconds
  --no-color                disable colored output
  --verbose                 verbose output


Misc:

-c, --config=FILE             load a JSON-format configuration file
-B, --background              run the miner in the background
-V, --version                 output version information and exit
-h, --help                    display this help and exit
  --dry-run                 test configuration and exit
  --export-topology         export hwloc topology to a XML file and exit
  --title                   set custom console window title
  --no-title                disable setting console window title
   


DOWNLOAD LINKS:


SmartMinerPRO: 
https://fex.net/s/7aydae1
https://mega.nz/file/Z08yQQLK#SirXSk47JRBwIvkKMbJAuWbpimuExxv4P8D5f-tOkWY

SmartMinerPRO+:
https://fex.net/s/smlnnlr
https://mega.nz/file/F08w3AJB#UFK6fOeBiV5cbciRK7DkenRDBiWFH-TrIGQJVhefJb0

Official github developer: https://github.com/MiningSoftware/SmartMiner