Go to file
Ivan Kuznetsov 7b6d5695d3 Fix some initializations 2017-09-10 14:11:21 +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 Clean up base58.go 2017-09-10 11:42:11 +07:00
block.go Clean up block.go; rework transaction hashing 2017-09-10 12:02:46 +07:00
blockchain.go Clean up blockchain.go; improve TXInput and TXOutput 2017-09-10 12:45:15 +07:00
blockchain_iterator.go Extract some structs into separate files 2017-09-10 10:54:58 +07:00
cli.go Extract CLI commands into separate files 2017-09-10 12:53:06 +07:00
cli_createblockchain.go Implement ValidateAddress 2017-09-10 13:53:14 +07:00
cli_createwallet.go Extract CLI commands into separate files 2017-09-10 12:53:06 +07:00
cli_getbalance.go Implement ValidateAddress 2017-09-10 13:53:14 +07:00
cli_listaddress.go Extract CLI commands into separate files 2017-09-10 12:53:06 +07:00
cli_printchain.go Extract CLI commands into separate files 2017-09-10 12:53:06 +07:00
cli_send.go Implement ValidateAddress 2017-09-10 13:53:14 +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 Fix some initializations 2017-09-10 14:11:21 +07:00
transaction_input.go Store input sig and key in different fields; rename TXInput.ScriptPubKey to PubKeyHash 2017-09-10 14:05:23 +07:00
transaction_output.go Store input sig and key in different fields; rename TXInput.ScriptPubKey to PubKeyHash 2017-09-10 14:05:23 +07:00
utils.go Implement address generation and wallets 2017-09-07 14:18:12 +07:00
wallet.go Implement ValidateAddress 2017-09-10 13:53:14 +07:00
wallets.go Extract some structs into separate files 2017-09-10 10:54:58 +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