Etherscan

如何從 Etherscan 獲取所有內部交易?

  • January 5, 2019

就像我們可以在 Etherscan 中抓取所有外部交易一樣,是否有工具/方法可以從那裡收集所有內部交易?

Etherscan API 允許通過地址獲取內部交易。該工具的描述可以在這裡找到:

https://etherscan.io/apis#accounts

一個例子是這樣的:

https://api.etherscan.io/api?module=account&action=txlist&address=0xddbd2b932c763ba5b1b7ae3b362eac3e8d40121a&startblock=0&endblock=99999999&page=1&offset=10&sort=asc&apikey=YourApiKeyToken

希望這可以幫助你

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