[preface] == Preface === Conventions Used in This Book The following typographical conventions are used in this book: _Italic_:: Indicates new terms, URLs, email addresses, filenames, and file extensions. +Constant width+:: Used for program listings, as well as within paragraphs to refer to program elements such as variable or function names, databases, data types, environment variables, statements, and keywords. **`Constant width bold`**:: Shows commands or other text that should be typed literally by the user. _++Constant width italic++_:: Shows text that should be replaced with user-supplied values or by values determined by context. [TIP] ==== This icon signifies a tip, suggestion, or general note. ==== [WARNING] ==== This icon indicates a warning or caution. ==== === Using Code Examples ++++ PROD: Please reach out to author to find out if they will be uploading code examples to oreilly.com or their own site (e.g., GitHub). If there is no code download, delete this whole section. ++++ Supplemental material (code examples, exercises, etc.) is available for download at link:$$http://examples.oreilly.com/-files/$$[]. This book is here to help you get your job done. In general, if example code is offered with this book, you may use it in your programs and documentation. You do not need to contact us for permission unless you’re reproducing a significant portion of the code. For example, writing a program that uses several chunks of code from this book does not require permission. Selling or distributing a CD-ROM of examples from O’Reilly books does require permission. Answering a question by citing this book and quoting example code does not require permission. Incorporating a significant amount of example code from this book into your product’s documentation does require permission. We appreciate, but do not require, attribution. An attribution usually includes the title, author, publisher, and ISBN. For example: “_Book Title_ by Some Author (O’Reilly). Copyright 2012 Some Copyright Holder, 978-0-596-xxxx-x.” If you feel your use of code examples falls outside fair use or the permission given above, feel free to contact us at pass:[permissions@oreilly.com]. === Safari® Books Online [role = "safarienabled"] [NOTE] ==== pass:[Safari Books Online] is an on-demand digital library that delivers expert pass:[content] in both book and video form from the world’s leading authors in technology and business. ==== Technology professionals, software developers, web designers, and business and creative professionals use Safari Books Online as their primary resource for research, problem solving, learning, and certification training. Safari Books Online offers a range of pass:[product mixes] and pricing programs for pass:[organizations], pass:[government agencies], and pass:[individuals]. Subscribers have access to thousands of books, training videos, and prepublication manuscripts in one fully searchable database from publishers like O’Reilly Media, Prentice Hall Professional, Addison-Wesley Professional, Microsoft Press, Sams, Que, Peachpit Press, Focal Press, Cisco Press, John Wiley & Sons, Syngress, Morgan Kaufmann, IBM Redbooks, Packt, Adobe Press, FT Press, Apress, Manning, New Riders, McGraw-Hill, Jones & Bartlett, Course Technology, and dozens pass:[more]. For more information about Safari Books Online, please visit us pass:[online]. === How to Contact Us Please address comments and questions concerning this book to the publisher: ++++ O’Reilly Media, Inc. 1005 Gravenstein Highway North Sebastopol, CA 95472 800-998-9938 (in the United States or Canada) 707-829-0515 (international or local) 707-829-0104 (fax) ++++ We have a web page for this book, where we list errata, examples, and any additional information. You can access this page at link:$$http://www.oreilly.com/catalog/$$[]. ++++ Don't forget to update the link above. ++++ To comment or ask technical questions about this book, send email to pass:[bookquestions@oreilly.com]. For more information about our books, courses, conferences, and news, see our website at link:$$http://www.oreilly.com$$[]. Find us on Facebook: link:$$http://facebook.com/oreilly$$[] Follow us on Twitter: link:$$http://twitter.com/oreillymedia$$[] Watch us on YouTube: link:$$http://www.youtube.com/oreillymedia$$[] === Acknowledgments ==== Quick Glossary This quick glossary contains many of the terms used in relation to bitcoin. These terms are used throughout the book, so bookmark this for a quick reference and clarification. address (aka public key):: ((("bitcoin address"))) ((("address", see="bitcoin address"))) ((("public key", see="bitcoin address"))) A bitcoin address looks like +1DSrfJdB2AnWaFNgSbv3MZC2m74996JafV+, they always start with a one. You can have as many as you like, share them so people can send you coins. bitcoin:: ((("bitcoin"))) The name of the currency unit (the coin), the network and the software block:: ((("block"))) A grouping of transactions, marked with a timestamp, and a fingerprint of the previous block. The block header is hashed to find a proof-of-work, thereby validating the transactions. Valid blocks are added to the main blockchain by network consensus. blockchain:: ((("blockchain"))) A list of validated blocks, each linking to its predecessor all the way to the genesis block. confirmations:: ((("confirmations"))) Once a transaction is included in a block, it has "one confirmation". As soon as _another_ block is mined on the same blockchain, the transaction has two confirmations etc. Six or more confirmations is considered final. difficulty:: ((("difficulty"))) A network-wide setting that controls how much computation is required to find a proof-of-work. difficulty target:: ((("target difficulty"))) A difficulty at which all the computation in the network will find blocks approximately every 10 minutes. difficulty re-targetting:: ((("difficulty re-targetting"))) A network-wide re-calculation of the difficulty which occurs once every 2106 blocks and considers the hashing power of the previous 2106 blocks. fees:: ((("fees"))) An excess amount included in each transaction as a network fee or additional reward to the miner who finds the proof-of-work for the new block. Currently 0.5 mBTC minimum. hash:: ((("hash"))) A digital fingerprint of some binary input. genesis block:: ((("genesis block"))) The first block in the blockchain, used to initialize the crypto-currency miner:: ((("miner"))) A network node that finds valid proof-of-work for new blocks, by repeated hashing network:: ((("network"))) A peer-to-peer network that propagates transactions and blocks to every bitcoin node on the network. proof-of-work:: ((("proof-of-work"))) A piece of data that requires significant computation to find. In bitcoin, miners must find a numeric solution to the SHA256 algorithm that meets a network wide target, the difficulty target. reward:: ((("reward"))) An amount included in each new block as a reward by the network to the miner who found the proof-of-work solution. It is currently 25BTC per block. secret key (aka private key):: ((("secret key"))) ((("private key", see="secret key"))) The secret number that unlocks bitcoins sent to the corresponding address. transaction:: ((("transaction"))) In simple terms, a transfer of bitcoins from one address to another. More precisely, a transaction is a signed data structure expressing a transfer of value. Transactions are transmitted over the bitcoin network, collected by miners and included into blocks, made permanent on the blockchain. wallet:: ((("wallet"))) Software that holds all your addresses. Use it to send bitcoin and manage your keys.