├── LICENSE ├── README.md ├── code_examples ├── coinbase_txn.py ├── get_block.py ├── merkle_tree.py ├── miner.py ├── send_txn_message.py └── send_version_message.py ├── markdown_source ├── bitcoin_in_a_nutshell.md ├── bitcoin_in_a_nutshell_blockchain.md ├── bitcoin_in_a_nutshell_cryptography.md ├── bitcoin_in_a_nutshell_mining.md ├── bitcoin_in_a_nutshell_protocol.md └── bitcoin_in_a_nutshell_transaction.md └── pdf ├── bitcoin_in_a_nutshell.pdf ├── bitcoin_in_a_nutshell_blockchain.pdf ├── bitcoin_in_a_nutshell_cryptography.pdf ├── bitcoin_in_a_nutshell_mining.pdf ├── bitcoin_in_a_nutshell_protocol.pdf ├── bitcoin_in_a_nutshell_transaction.pdf └── book.pdf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/README.md -------------------------------------------------------------------------------- /code_examples/coinbase_txn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/code_examples/coinbase_txn.py -------------------------------------------------------------------------------- /code_examples/get_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/code_examples/get_block.py -------------------------------------------------------------------------------- /code_examples/merkle_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/code_examples/merkle_tree.py -------------------------------------------------------------------------------- /code_examples/miner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/code_examples/miner.py -------------------------------------------------------------------------------- /code_examples/send_txn_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/code_examples/send_txn_message.py -------------------------------------------------------------------------------- /code_examples/send_version_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/code_examples/send_version_message.py -------------------------------------------------------------------------------- /markdown_source/bitcoin_in_a_nutshell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/markdown_source/bitcoin_in_a_nutshell.md -------------------------------------------------------------------------------- /markdown_source/bitcoin_in_a_nutshell_blockchain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/markdown_source/bitcoin_in_a_nutshell_blockchain.md -------------------------------------------------------------------------------- /markdown_source/bitcoin_in_a_nutshell_cryptography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/markdown_source/bitcoin_in_a_nutshell_cryptography.md -------------------------------------------------------------------------------- /markdown_source/bitcoin_in_a_nutshell_mining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/markdown_source/bitcoin_in_a_nutshell_mining.md -------------------------------------------------------------------------------- /markdown_source/bitcoin_in_a_nutshell_protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/markdown_source/bitcoin_in_a_nutshell_protocol.md -------------------------------------------------------------------------------- /markdown_source/bitcoin_in_a_nutshell_transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/markdown_source/bitcoin_in_a_nutshell_transaction.md -------------------------------------------------------------------------------- /pdf/bitcoin_in_a_nutshell.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/pdf/bitcoin_in_a_nutshell.pdf -------------------------------------------------------------------------------- /pdf/bitcoin_in_a_nutshell_blockchain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/pdf/bitcoin_in_a_nutshell_blockchain.pdf -------------------------------------------------------------------------------- /pdf/bitcoin_in_a_nutshell_cryptography.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/pdf/bitcoin_in_a_nutshell_cryptography.pdf -------------------------------------------------------------------------------- /pdf/bitcoin_in_a_nutshell_mining.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/pdf/bitcoin_in_a_nutshell_mining.pdf -------------------------------------------------------------------------------- /pdf/bitcoin_in_a_nutshell_protocol.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/pdf/bitcoin_in_a_nutshell_protocol.pdf -------------------------------------------------------------------------------- /pdf/bitcoin_in_a_nutshell_transaction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/pdf/bitcoin_in_a_nutshell_transaction.pdf -------------------------------------------------------------------------------- /pdf/book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pavlovdog/bitcoin_in_a_nutshell/HEAD/pdf/book.pdf --------------------------------------------------------------------------------