An open API service indexing awesome lists of open source software.

https://github.com/abhijayrajvansh/crypto-mining-101

⛏️ demonstration of proof-of-work, high-level implementation of hash generation using brute force with X leading zeros.
https://github.com/abhijayrajvansh/crypto-mining-101

bitcoin crypto-mining hash proof-of-work sha256

Last synced: about 2 months ago
JSON representation

⛏️ demonstration of proof-of-work, high-level implementation of hash generation using brute force with X leading zeros.

Awesome Lists containing this project

README

          

# Crypto Mining 101

Author: [Abhijay Rajvansh](https://abhijayrajvansh.com)

solves the problem & finds a hash with X leading zeros, such as:

```
...
trying nonce: 2240934 hash: e48fff9bb3f7afa8dfcdd6c3fc6d4ea3d8c7a3816dfdca65fa422cd5e7b5a81a
trying nonce: 2240935 hash: d90a4270a74af464842ff81de13cf8a5ca933c13821e914fd4af474542fe185c
trying nonce: 2240936 hash: a34bc21b3ba748000091a55feeba92b3ab54160c33c1e88c9fcebcb7a206d573
trying nonce: 2240937 hash: 8adf7520078ad764aa4ab5c775888e3fb6a7711f3969978f9cec9452203fd29d
trying nonce: 2240938 hash: 0000037453800f26b0752fcdcafdec0c77d78f149d125e7d17419a5eabc73c2e

nonce found: 2240938
input string: abhijayrajvansh2240938
hash found: 0000037453800f26b0752fcdcafdec0c77d78f149d125e7d17419a5eabc73c2e
```