如何获取有关随机智能合约地址的数据。如创建日期、链、持有人(持有多少个钱包)

How to get data regarding random smart contract addresses. Such as creation date, chain, holders (how many wallets are holding)

基本上,node.js或javascript函数将使用web3或其他任何方式从ETH或BSC扫描中提取数据,通过以下步骤对其进行分析和显示:

  1. 系统会取ETH或BSC链的智能合约地址
  2. 系统会通过Etherscan.io、BSC扫描等平台找链
  3. 知道链后,系统会查看有多少个钱包持有代币“Holders”
  4. 通过 ETH 或 BSC 扫描获取合约创建日期。

请指导我,我怎样才能达到要求的结果。谢谢

  1. The system will find chains via a platform like Etherscan.io, BSC scan.

答案:在ETH和BSC扫描上创建账户,然后在以下2个请求的响应中获取API密钥,如果您获得状态码= 1,则表示合约已部署在该特定链上。

使用 Etherscan 开发 API https://api.etherscan.io/api?module=contract&action=getabi&address=0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413&apikey=xxx

与 BSC 类似,使用 BSC 扫描开发 API https://api.bscscan.com/api?module=contract&action=getabi&address=0x0000000000000000000000000000000000001004&apikey=xxx

  1. After knowing the chain, the system will check how many wallets are holding the token "Holders"

好吧,为此我试图找到免费的 etherscan API。但是,我认为他们在 PRO 计划中提供 API。所以我使用 node.js 和 web scraping npm library cheerio 找到的快速解决方案是:

     const options1 = {
                method: 'GET',
                url: `https://etherscan.io/token/${req.query.tokenAddress}`,
                headers: { 'content-type': 'application/json' },
                json: true
            };
            request(options1, (error, response, html) => {
                if (!error && response.statusCode == 200) {
                    const $ = cheerio.load(html);

                    const holders = $('div[id = "ContentPlaceHolder1_tr_tokenHolders"] > div > div').text().trim();

                    console.log(holders);
                    res.send({ chain, holders });
                } else if (error) throw new Error(error);
            });
  1. Get Contract creation date via ETH or BSC scan.

任何合约的第一笔交易都是为了部署智能合约。因此,我们可以通过获取特定智能合约的第一笔交易的执行时间戳来获取合约创建日期和时间。

对于 EthScan,我们可以通过他们的 API 调用 https://api.etherscan.io/api?module=account&action=txlist&address=0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae&startblock=0&endblock=99999999&page=1&offset=10&sort=asc&apikey=xxx

获取任何合约的交易

对于 BSC,它是 https://api.bscscan.com/api?module=account&action=txlist&address=0x0000000000000000000000000000000000001004&startblock=1&endblock=99999999&page=1&offset=10&sort=asc&apikey=xxx

更多信息请咨询BSC scan docs and ETH scan docs