Go to file
Ivan Kuznetsov caf71744f5 Use crypto/ecdsa to generate ECDSA key pair 2017-09-07 17:05:57 +07:00
.gitignore Save wallet to a file 2017-09-07 16:42:38 +07:00
README.md Add a link to the README 2017-09-05 21:38:03 +07:00
base58.go Implement address generation and wallets 2017-09-07 14:18:12 +07:00
block.go Rename Transaction.GetHash to SetID; add Transaction.ID field 2017-09-04 11:32:24 +07:00
blockchain.go Final fixes 2017-09-05 21:35:45 +07:00
cli.go Don't create a wallet when wallet.dat already exists 2017-09-07 16:46:55 +07:00
main.go Implement 'createblockchain' command 2017-09-03 11:17:10 +07:00
proofofwork.go Set PoW target to 24 2017-09-04 11:32:59 +07:00
transaction.go Final fixes 2017-09-05 21:35:45 +07:00
utils.go Implement address generation and wallets 2017-09-07 14:18:12 +07:00
wallet.go Use crypto/ecdsa to generate ECDSA key pair 2017-09-07 17:05:57 +07:00

README.md

Blockchain in Go

A blockchain implementation in Go, as described in these articles:

  1. Basic Prototype
  2. Proof-of-Work
  3. Persistence and CLI
  4. Transactions 1