2
I came across a similar question that was asked but the answer didn't seem quite complete. Coding is completely foreign to me and I have spent some time trying to solve with no success. I am trying to increase the difficulty by getting 8 leading 0s and the corresponding nonce for the initial hash (no previous blocks) in python. Any direction here is appreciated
import hashlib
m = hashlib.sha256()
m.update(b'Your Name')
m.digest()
m.hexdigest()
'9cd26bee4d76694cb03cfee8c2355a83339157f2e9234fd1352c12597da72474'
Are you trying to create a genesis block for an altcoin? – chytrik – 2019-11-21T21:04:55.010
2
This is an exercise for Grad school. The concept is to enter your name into the data field https://anders.com/blockchain/blockchain in the first block with a corresponding nonce that would generate a hash with 8+ leading 0's. I thought perhaps through the use of python (based on what i have come across so far, but I am a real novice) that this could be achieved, although I assume it will take time to run
– magner73 – 2019-11-21T21:09:09.390