node-blockchain icon indicating copy to clipboard operation
node-blockchain copied to clipboard

Blockchain Cryptocurrency Implemented with Node & TypeScript

Results 6 node-blockchain issues
Sort by recently updated
recently updated
newest added
trafficstars

The sender's public key can be found in the transaction instance, there's no need to give it to the function as a separate argument.

It's a good project for me who want to learn the block chain.But there's a confused point that I can't figure out,the function "mine" seems no meanings when we use...

When mining, shouldn't the `solutionHash` be compared to a `targetHash` and the block only be added if `solutionHash

According to the [Bitcoin whitepaper](https://bitcoin.org/bitcoin.pdf) and many videos I see online on the topic each block has a `header` (current hash that was mined) and `prevHash` matching the header of...

First of all thanks for the content and sharing the code! I have one question though. Class is a js object, where fields are not ordered. If you produce a...