Ergo nonce distribution

People have used nonce distribution to speculate on the dynamics of the mining industry of PoW coins. In theory, block nonces should be randomly distributed. However, in practice, nonces might show patterns due to ASIC hardware, special optimizations.

For those interested in nonce analysis for Bitcoin, here is a good article from BitMex (Bitmex-Nonce). In this thread, I will show a similar analysis I have done for Ergo mining.

Here is the nonce distribution graph of Ergo mining. The blue dots are nonces of all the blocks (until end of 2020.05), and the red curve is the difficulty of Ergo mining.

There are two steps to make such a graph: 1) download all the nonces and difficulty data from a full node using curl/wget etc. (Ergo explorer might be too slow for this); 2) use plot library to draw such graph. I used pyplot.plot_date.

From the graph, we could observe interesting patterns:

  1. Around middle of 2020-03, there is a significant blank area at the bottom of the graph with almost zero nonces. According to @kushti, this might be due to @BigEvilSoloMiner 's β€œhidden group” trick.
  2. Since early 2020-05, the nonces are less random than before as the color of the dots gets dark (which means more small clusters). This change matches well with the increase in difficulty. However, I cannot tell what is the root cause of this change.

Overall, the nonces are pretty random, which is great news. We don’t see strong patterns as shown in the article of BitMex. I will keep monitoring in the future just in case strong patterns might appear.

7 Likes