基本上,node.js 或 javascript 函数将使用 web3 或其他方式从 ETH 或 BSC 扫描中提取数据,分析并按以下步骤显示:
- 系统将获取 ETH 或 BSC 链的智能合约地址。
- 该系统将通过 Etherscan.io、BSC 扫描等平台找到链。
- 知道链后,系统会检查有多少钱包持有代币“Holders”
- 通过 ETH 或 BSC 扫描获取合约创建日期。
请指导我,我如何才能达到所需的结果。谢谢
基本上,node.js 或 javascript 函数将使用 web3 或其他方式从 ETH 或 BSC 扫描中提取数据,分析并按以下步骤显示:
请指导我,我如何才能达到所需的结果。谢谢
- 该系统将通过 Etherscan.io、BSC 扫描等平台找到链。
答:在 ETH 和 BSC 扫描上创建帐户,获取 API 密钥,然后在以下 2 个请求的响应中,如果您得到状态码 = 1,则表示合约已部署在该特定链上。
使用 Etherscan 开发 APIhttps://api.etherscan.io/api?module=contract&action=getabi&address=0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413&apikey=xxx
同样对于 BSC,使用 BSC 扫描开发 APIhttps://api.bscscan.com/api?module=contract&action=getabi&address=0x0000000000000000000000000000000000001004&apikey=xxx
- 知道链后,系统会检查有多少钱包持有代币“Holders”
好吧,为此我试图找到 etherscan 免费 API。但是,我认为他们在 PRO 计划中提供 API。因此,我使用 node.js 和网络抓取npm 库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);
});
- 通过 ETH 或 BSC 扫描获取合约创建日期。
任何合约的第一笔交易都是为了部署智能合约。因此,我们可以通过获取该特定智能合约的第一笔交易的执行时间戳来获取合约创建日期和时间。
对于 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