Mining Pool


Mining Pool

Discord Logo

Introduction

Welcome to the Sigmanauts pool, a DAO-driven, community-run mining pool dedicated to supporting the Ergo ecosystem. Joining us not only contributes to the Ergo community (fees go to Sigmanauts treasury) but also offers hourly bonus token payments. Setting up mining on your computer with a compatible GPU and an Ergo wallet takes less than 5 minutes. Our pool boasts a minimal 0.9% fee, a payout threshold of 0.5 ERG, and operates on the PPLNS payment method (Pay Per Last N Shares, with N set to 0.5).

Join the conversation on Telegram: Sig-Mining or Discord: Sig-Mining Discord

Wallet Setup:

To get started with mining Ergo, you need an Ergo wallet. You can create one using Nautilus on Chrome/Brave or Firefox.

Mining Software:

You'll also need mining software compatible with your GPU. Here are some options:

Mining Port:

Choose a port based on your hash rate:

Under 10g/h:

  • No TLS: 15.204.211.130:3052
  • TLS: pool.ergo-sig-mining.net:3054 or for things like lolminer: ssl://pool.ergo-sig-mining.net:3054

Over 10g/h:

  • No TLS: 15.204.211.130:3053
  • TLS: pool.ergo-sig-mining.net:3055 or for things like lolminer: ssl://pool.ergo-sig-mining.net:3055

Dashboards:

To check your connection to the pool, use one of the dashboards listed above or enter your wallet address or worker name below:

Example miner configurations

Set-up in 5 Minutes on Microsoft Windows

For Ergo, you need a card with a minimum of 4GB of RAM, ideally more. Create a Ergo wallet using Nautilus on (Chrome/Brave or Firefox), if you don’t have one already. Extract the mining software file in your Download directory. Open a text editor, and type in (or copy & paste) the following, assuming in this example you are on Windows:

setx GPU_FORCE_64BIT_PTR 0
setx GPU_MAX_HEAP_SIZE 100
setx GPU_USE_SYNC_OBJECTS 1
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_SINGLE_ALLOC_PERCENT 100

C:\Users\your_username\path\to\mining\file\t-rex.exe -a autolykos2 -o stratum+ssl://XXX.XXX.XXX.XXX:XXXX -u <YourErgoAddress>.<AnyNameYouWantToIdentifyTheComputer>

For clarity, <YourErgoAddress>.<AnyNameYouWantToIdentifyTheComputer> should look something like:

C:\Users\sigmanaut\Downloads\t-rex-0.24.7-win\t-rex.exe -a autolykos2 -o stratum+ssl://XXX.XXX.XXX.XXX:XXXX -u 9g1p6UU8XoAeU4yGPLpbTHYiG8aBHwfCFzQqJZrfzuLnmF3zb7P.covertmixeraddress

You can find your address by going to the Receive tab in Nautilus. After you enter add your address, save the file as ERGO_mining.bat. To start mining, simply click on the file.

You can then go to the Sigma Mining Pool Dashboard and put in your addreess to verify that you are connected to the pool.

Note: If you have a virus protection program like McAfee, you’ll need to restore the t-rex.exe file after extraction and exclude it from Real-Time Scanning in order to run it.

If you want the mining software to start when you reboot your computer, then, save ERGO_mining.bat in C:\Users\Username\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup. If you have trouble finding the Startup folder, you can always save ERGO_mining.bat somewhere, type the Windows key + R to get the shell prompt, then type:

shell:startup

This will bring up the Startup folder, and you can drag and drop the Ergo_mining.bat file into it.

Set-up in Linux

Let’s assume that you somehow managed to get your graphics card working on Linux. Then, the process is very similar to Windows above. Open a text editor and type the following:

#!/bin/bash

export GPU_MAX_ALLOC_PERCENT=100
export GPU_SINGLE_ALLOC_PERCENT=100
export GPU_MAX_HEAP_SIZE=100
export GPU_USE_SYNC_OBJECTS=1

/home/sigmanaut/Downloads/teamredminer-v0.10.14-linux/teamredminer -a autolykos2 -o stratum+ssl://XXX.XXX.XXX.XXX:XXXX -u  9g1p6UU8XoAeU4yGPLpbTHYiG8aBHwfCFzQqJZrfzuLnmF3zb7P.covertmixeraddress

Then, save the file as ergo_miner.sh. At the command prompt: chmod 744 ergo_miner.sh and then just run it as usual, by typing: ./ergo_miner.sh at the prompt. If you want it to automatically run whenever you restart your machine, this article from linuxconfig.org tells you everything you need to do to set it as a systemd service.