Go-Ethereum

從 etherscan.io 獲取最新的區塊資訊,包括 gas 價格、區塊時間等

  • May 11, 2020

我正在嘗試收集有關 'fast': 140, 'fastest': 165, 'safeLow': 100, 'average': 120, 'block_time': 8.875, 'blockNum': 10021935, 'speed': 0.8993211072506393,....etc.最新乙太坊區塊的資訊。

提供了一堆 API,https://etherscan.io/apis但我無法得到我想要的。任何線索都受到高度讚賞。

上面的例子顯示自https://ethgasstation.info/api/ethgasAPI.json

Etherscan 目前不通過其 API 提供類似的資訊。他們有兩個端點用於提供氣體資訊,但可能無法滿足您的需求。詳見https://etherscan.io/apis#gastracker

如果 Eth 加油站提供了正確的資訊,你為什麼不使用它呢?你可以在他們的網站https://docs.ethgasstation.info/上找到完整的文件。

天然氣價格

返回快速、標準和安全的低價以及目前區塊。

https://ethgasstation.info/api/ethgasAPI.json

範例響應

{  
  "fast":50.0,
  "fastest":200.0,
  "safeLow":10.0,
  "average":20.0,
  "block_time":13.942307692307692,
  "blockNum":7403346,
  "speed":0.7090284960673774,
  "safeLowWait":13.4,
  "avgWait":1.8,
  "fastWait":0.5,
  "fastestWait":0.5
}

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