From 597d66918df2a2cfa0c042b036dc982566adcdbf Mon Sep 17 00:00:00 2001 From: "Andreas M. Antonopoulos" Date: Wed, 3 Feb 2016 11:00:05 -0600 Subject: [PATCH] improved intro --- ch03.asciidoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ch03.asciidoc b/ch03.asciidoc index beeeb569..5b91a9f7 100644 --- a/ch03.asciidoc +++ b/ch03.asciidoc @@ -1,8 +1,4 @@ [[ch03_bitcoin_client]] -== Bitcoin Development Environment - -If you're a developer, you will want to setup a development environment with all the tools, libraries and support software for writing bitcoin applications. If you're not a developer, you might want to skip this chapter entirely. - === Bitcoin Core: The Reference Implementation Bitcoin is an _open source_ project and the source code is available under an open (MIT) license, free to download and use for any purpose. Open source means more than simply free to use. It also means that bitcoin is developed by an open community of volunteers. At first, that community consisted of only Satoshi Nakamoto. By 2016, bitcoin's source code has more than 340 contributors with about a dozen developers working on the code almost full time and several dozen more on a part-time basis. Anyone can contribute to the code - including you! @@ -15,6 +11,10 @@ When bitcoin was created by Satoshi Nakamoto, the software was actually complete Even though Bitcoin Core includes a reference implementation of a wallet, this is not intended to be used as a production wallet for users or for applications. Application developers are advised to build wallets using modern standards such as BIP39 and BIP32 (see <> and <>). ==== +== Bitcoin Development Environment + +If you're a developer, you will want to setup a development environment with all the tools, libraries and support software for writing bitcoin applications. In this highly technical chapter, we'll walk through that process step-by-step. If the material becomes too dense (and you're not actually setting up a development environment) feel free to skip to the next chapter, which is less technical. + [[compiling_core]] === Compiling Bitcoin Core from the Source Code