简体   繁体   English

I am trying to find a way to get the total transaction number for a list of Ethereum addresses

[英]I am trying to find a way to get the total transaction number for a list of Ethereum addresses

I am working on some tools that will allow me to finish my blockchain analysis project and I need help.

I have a list of 1000 Ethereum addresses and I am trying to get the total transaction number for each of these addresses.

Solutions I've come up with so far:

  • I looked into the web3.py library and read their documentation but I couldn't seem to find a function like web3.eth.get_transaction_count({address}) it seemed promising at first but now I don't see any use for it.

  • I looked into blockchain.info's API, they do in fact have an endpoint that returns the total transactions number, but they only do bitcoin + they have a rate limit, bummer..

  • I looked into etherscan.io's API, same as web3.py, they don't return total transaction information...

Is there any possible way one could fetch the total transactions number for an Ethereum address? Without having to worry about rate limits etc. ?

What I would suggest is to use the blockscout API.我建议使用blockscout API。 Here is the documentation: Blockscout API这是文档: Blockscout API

Use the txlist API from account module:使用account模块中的txlist API:

?module=account&action=eth_get_balance&address={addressHash}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 试图找到一个事件的总数 - Trying to find the total number of an event 我正在尝试将数字分开,然后将它们存储在列表中 - I am trying to separate digits of a number and then store them in a list 有没有办法找出将字符串值列表转换为第二个字符串值列表所需的更改/编辑总数? - Is there a way to find out the total number of changes/edits it takes to convert a list of string values to a second list of string values? 我试图通过列表理解找出下面显示的结果: - I am trying to find out the result shown below with list comprehension: 我正在尝试收集10个数字作为输入,将它们存储在列表中,然后显示数字的最大值,最小值,总数和平均值 - I am trying to collect 10 numbers as input, store them in a list, then display the max, min, total, and average of the numbers 试图获取目录中的文件总数 - Trying to get number of files total in a directory 我正在尝试在列表中创建一个列表,然后在列表中编辑列表中的数字 - I am trying to make there be a list within a list and then edit the number within the list within the list 我正在尝试获取所选列表项的索引值 - I am trying to get the index value of the list item selected 我正在尝试从字典列表中获取两个键 - I am trying to get both keys from a list of dictionaries 我正在尝试比较元组和列表中的项目,但出现错误 - I am trying to compare an item from a tuple and a list but get an error
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM