3.2 从源码编译比特币核心
clone代码:git clone https://github.com/bitcoin/bitcoin.git
进入该目录:cd bitcoin
运行自动配置脚本:./autogen.sh
创建可定制构建脚本:./configure
编译:make
安装:sudo make install
运行:bitcoind
在 .bitcoin目录下的bitcoin.conf是配置文件
3.3 通过命令行使用比特币核心的JSON-RPC API接口
命令行可以使用API进行编程,所以使用。如:bitcoin-cli help getblockhash
获取核心状态信息:bitcoin-cli -getinfo
探索区块:getblock、getblockhash
3.4 其他客户端、资料
C/C++
JS
JAVA
Python
Ruby
Go
Rust
C#
OC