5

我正在使用web3js。我想要按地址的令牌交易列表(不是交易列表)。我已经使用过该getBlock功能,但它仅适用于特定块。我没有阻止列表,我只想要按地址列出的列表。所以请帮助我如何获得令牌交易列表

4

1 回答 1

10

我已经使用getPastEventsweb3-ethweb3-utils1.0 测试版实现了这一点。

standardAbi我从这个repo中检索到的for ERC20 代币

import Eth from "web3-eth";
import Utils from "web3-utils";

async function getERC20TransactionsByAddress({
  tokenContractAddress,
  tokenDecimals,
  address,
  fromBlock
}) {
  // initialize the ethereum client
  const eth = new Eth(
    Eth.givenProvider || "ws://some.local-or-remote.node:8546"
  );

  const currentBlockNumber = await eth.getBlockNumber();
  // if no block to start looking from is provided, look at tx from the last day
  // 86400s in a day / eth block time 10s ~ 8640 blocks a day
  if (!fromBlock) fromBlock = currentBlockNumber - 8640;

  const contract = new eth.Contract(standardAbi, tokenContractAddress);
  const transferEvents = await contract.getPastEvents("Transfer", {
    fromBlock,
    filter: {
      isError: 0,
      txreceipt_status: 1
    },
    topics: [
      Utils.sha3("Transfer(address,address,uint256)"),
      null,
      Utils.padLeft(address, 64)
    ]
  });

  return transferEvents
    .sort((evOne, evTwo) => evOne.blockNumber - evTwo.blockNumber)
    .map(({ blockNumber, transactionHash, returnValues }) => {
      return {
        transactionHash,
        confirmations: currentBlockNumber - blockNumber,
        amount: returnValues._value * Math.pow(10, -tokenDecimals)
      };
    });
}

我没有测试过这段代码,因为它对我的代码做了一些修改,而且肯定可以优化,但我希望它有所帮助。

我正在按影响Transfer事件的主题进行过滤,目标是address参数中提供的内容。

于 2018-04-05T05:02:50.050 回答