Testrpc

從 testrpc 網路探索區塊鏈數據

  • October 4, 2017

探索測試網路的區塊鏈內容的最佳方式是什麼?理想情況下,有沒有辦法調整https://live.ether.camp來跟踪本地網路?或者,可以使用什麼來檢查區塊鏈的內容?

使用Web3.js,您可以通過命令獲取鏈塊內容eth.getBlock(eth.blockNumber),並訪問每個屬性,

currentBlock = eth.getBlock(eth.blockNumber);
currentBlock.extraData;
currentBlock.transactions;
...

引用自:https://ethereum.stackexchange.com/questions/23947