Blockchain
如何獲得測試網塊高度?
就像我
wget -O - http://blockchain.info/q/getblockcount 2>/dev/null
對主網所做的那樣。
Blockchain.info 不跟踪測試網,但 blockexplorer.com 可以。事實上,您使用的 API 最初來自 blockexplorer.com,blockchain.info 只是採用了它。
wget -O - http://blockexplorer.com/testnet/q/getblockcount 2> /dev/null
或更短
curl http://blockexplorer.com/testnet/q/getblockcount
BlockExplorer 不再適用於我(重定向到 testnet.blockexplorer.com,它會拋出 502),所以我找到了一個新的替代方案:
<http://tbtc.blockr.io/api/v1/coin/info>
你必須得到“last_block”元素。
(對於主網:http: //btc.blockr.io/api/v1/coin/info)