1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2025-01-11 00:01:03 +00:00

Made changes to ch03.asciidoc

This commit is contained in:
drusselloctal@gmail.com 2014-10-29 18:42:56 -07:00
parent 9add8caf3d
commit 636309bc3f

View File

@ -1132,17 +1132,17 @@ As before, we can also examine this in more detail using the +getrawtransaction+
[[alt_libraries]]
=== Alternative Clients, Libraries and Toolkits
Beyond the reference client, bitcoind, there are other clients and libraries that can be used to interact with the bitcoin network and data structures. These are implemented in a variety of programming languages, offering programmers native interfaces in their own language.
Beyond the reference client (bitcoind), other clients and libraries can be used to interact with the bitcoin network and data structures. These are implemented in a variety of programming languages, offering programmers native interfaces in their own language.
Alternative implementations include:
* libbitcoin and sx tools, a C++ multi-threaded full node client and library with command-line tools (https://libbitcoin.dyne.org/)
* bitcoinj, a Java full node client library (https://code.google.com/p/bitcoinj/)
* btcd, a Go language full node bitcoin client (https://opensource.conformal.com/wiki/btcd)
* Bits of Proof (BOP), a Java enterprise-class implementation of bitcoin (https://bitsofproof.com)
* picocoin, a C implementation of a light-weight client library for bitcoin (https://github.com/jgarzik/picocoin)
* pybitcointools, a Python bitcoin library (https://github.com/vbuterin/pybitcointools)
* pycoin, another Python bitcoin library (https://github.com/richardkiss/pycoin)
* https://libbitcoin.dyne.org/[libbitcoin and sx tools], a C++ multithreaded full-node client and library with command-line tools
* https://code.google.com/p/bitcoinj/[bitcoinj], a Java full-node client library
* https://opensource.conformal.com/wiki/btcd[btcd], a Go language full-node bitcoin client
* https://bitsofproof.com[Bits of Proof (BOP)], a Java enterprise-class implementation of bitcoin
* https://github.com/jgarzik/picocoin[picocoin], a C implementation of a light-weight client library for bitcoin
* https://github.com/vbuterin/pybitcointools[pybitcointools], a Python bitcoin library
* https://github.com/richardkiss/pycoin[pycoin], another Python bitcoin library
Many more libraries exist in a variety of other programming languages and more are created all the time.