Mining Ergo for Fun and Profit

Ergo GPU Mining

This article will help you start mining Ergo using a GPU.

Ergo mining is based on Autolykos, a Proof-of-Work algorithm designed to be ASIC and pool resistant. Miners have to perform memory-hard computations~(at least 4 GB memory is needed, but the current most efficient implementation utilizes between 8 GB of vRAM) that makes Ergo friendly for GPU mining. In addition, Autolykos requires access to private keys, thereby preventing mining pool formation. As soon as a correct solution is found, the miner broadcasts the block along with the solution and is able to collect the block reward after a delay of 720 blocks using the secret he used during mining. The rest of the network verifies the solution using the miner’s public key and this verification can be done very efficiently, requiring less than a kilobyte of memory.

Prerequisites

In order to mine, you need the following setup:

  1. A full node with wallet initialized and fully synced.
  2. A computer with a GPU that is recognized by your OS.
  3. Ergo mining software for your operating system. Ergo supports both AMD and NVidia GPUs.

Ergo mining requires a configured and synchronized Ergo node and at least one GPU for mining. You may use multiple GPUs if you wish (to multiply your hashing power) but you only need one Ergo node.

Note that Ergo no longer works in Java 8 due to its lack of strong cryptography. You must use Java >= 9

The links for setting up the mining software are:

!!!WARNING!!! Since Autolykos utilizes private keys, you should never use untrusted mining software. Check that the software is open-source and validated by the community

Sync node and Initialize Wallet

Follow the steps of setting up a node as described in the tutorial.

Edit the config file of the node and add the following line.

ergo.node.mining = true

Ensure that the wallet is initialized and you are in possession of the correct mnemonic sentence.

Finally, ensure that the node is synced as described here.

Configure and run the miner

On the computer where the miner will be running, create a file called config.json with the following content

{
    "seed": "Attention!!! Replace this with your mnemonic sentence and keep it secret or you will get robbed", 
    "node": "http://192.168.1.100:9053",
    "keepPrehash": false
}

where:

  • seed is the mnemonic sentence from your node’s wallet obtained in the previous step.
  • node is the URL of your node.
  • keepPrehash is an optimization parameter. If set to true , the miner will consume at most 8GB of memory. If set to false the miner will consume at most 4GB of memory, but its performance will be for about 25% lower.

Run your miner using the command ./auto.out config.json (for Linux) or miner.exe config.json (for Windows) and enjoy receiving block rewards!

Once you have received any mining rewards, you can view the balance as described here and then withdraw the funds as described here.

1 Like

Martin-mx,

Thanks for the tutorial!
But i don’t know if this is working or not, could you help?

The error:

2021-05-29 23:54:55,568 INFO [main thread] Unrecognized config option, currently valid options are "node"
2021-05-29 23:54:55,568 INFO [main thread] Unrecognized config option, currently valid options are "node"
2021-05-29 23:54:55,568 INFO [main thread] Unrecognized config option, currently valid options are "node"
  • My node is sync
  • My wallet has password

config.json settings:

{ "mnemonic" : "my_mnmonic", "mnemonicPass": "my_password", "node" : "https://127.0.0.1:9053", "keepPrehash" : true }

Thanks in advance!

Although I’m getting the double hashrate when using "keep rehash" : true, so I’m really lost here.

the tutorial is outdated, no mnemonic is needed in config anymore

1 Like

I thought that too… but the information is limited.

Is this the correct way for solo?

  • Initiate node, and unlock wallet
  • config.json { "node" : "http://127.0.0.1:9053", }