Etherscan

如何使用 etherscan api 獲取最新塊?

  • January 5, 2022

我正在嘗試使用etherscan 的 Ethereum Developer API獲取最新的塊(它的高度) 。

例如,我可以使用以下 URL 從 blockcypher 獲取它: https ://api.blockcypher.com/v1/eth/main

(見欄位“高度”)

找不到從 etherscan 獲取此數據的方法,是否存在並且我錯過了它?

您可以分兩步執行此操作:

  1. 使用以下命令獲取最新塊的編號:

https://api.etherscan.io/api?module=proxy&action=eth_blockNumber&apikey=YourApiKeyToken 2. 使用以下方法獲取塊:

https://api.etherscan.io/api?module=block&action=getblockreward&blockno=2165403&apikey=YourApiKeyToken

change blockno=‘上一步得到的值’

希望這可以幫助

更容易:

https://api.blockcypher.com/v1/eth/main

Blockcypher 對於這類東西來說是一個非常好的 api。

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