This isn’t quite what you’re looking for but I have a GitHub project to create various implementations, including for ethereum!
https://github.com/conwaysgame
EDIT: perhaps the GitHub’s main README could include links to various implementations too!
I very much enjoyed Andrej Karpathy‘s „from scratch“ bitcoin implementation [1]. I‘m sure there are other projects on GitHub explaining blockchain concepts directly in code.
Can you write up how you did this? I'm really curious how you put transactions on the Blockchain originating in the browser. This is really interesting. Did you use any open source libraries for this?
This looks awesome! I made a similar thing for bitcoin at a hackathon not too long ago (https://github.com/zachlatta/bitroad). I'm really looking forward to seeing where you guys take this!
A really needed project! I've started something really similar last year because I felt I needed something: https://github.com/tehmoon/cryptocli which can do a bunch of things. Perhaps you can get ideas!
You sound like me. If you like writing tutorials for your tinkering, I'm building a platform to support people like you: https://ocalog.com/ I'm currently tinkering with Ethereum.
Very cool! I've been working on a similar project every so often(https://github.com/lambdanaut/lambdacoin). I'm not as far along as you are, but so far it seems like creating a cryptocurrency from scratch is not really all that big of a project, at least getting it into a prototypical state.
I was delighted to find that much of the math logic is already handled by libraries such as pycrypto.
It's funny to me how similar our codebases look. Especially our classes such as `Block` and `Transaction`. We each have to_json and from_json methods as well, in order to serialize the data for propagation.
EDIT: perhaps the GitHub’s main README could include links to various implementations too!
reply